- Posts: 25
- Thank you received: 0
Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.
The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.
Solved How to change the font of the posts in my blue eagle template?
Please Log in or Create an account to join the conversation.
On the other hand, a single mouse-click in Firebug will give you all the information that you need, too.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
body, td, div, p {
font-family: Trebuchet MS,Verdana,sans-serif !important;
font-size: 14px;
line-height: 1.3em;
}
But if you want to make other changes to just the parts you shown in the picture, add the following lines to the end of the abovenamed file: something like this:
#Kunena div.kmsgbody div.kmsgtext {
color: <whatever colour you want>;
font-family: <whatever font-family you want>;
<etc.>
}
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
#Kunena div.kmsgbody div.kmsgtext {
font-family: comic sans;
}
This is a different font (and differently-sized font) to MS Trebuchet. (Actually, "comic sans" is not a legal font-family name. If you want to use Comic Sans, then specify "Comic Sans" not "comic sans"). If you want differently sized font, then add other parts to that rule, e.g.
#Kunena div.kmsgbody div.kmsgtext {
font-family: Comic Sans;
font-size: <whatever font size you want>;
It would be a lot simpler if you just changed ../templates/newbornbaby/css/template.css, at around line 51 (not necessarily exactly that particular line), as I suggested, by adding the !important directive as shown below:
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.