Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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
Question [RESOLVED] Font size in message editor is too small; users cannot read it
If you're only interested in changing the font size, add the following three lines to the end of your Joomla site template CSS file:
#Kunena .kreply-form .inputbox {
font-size:12px !important;
}
If you don't like 12px, try some other value (e.g. 14px or 16px) until you see a change that you can live with.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
It's in this part:
#Kunena table#kpostmessage .ktxtarea {
border: 1px solid #BFC3C6;
height: 200px;
overflow: auto;
}
I added in there the font size...now it looks like this:
#Kunena table#kpostmessage .ktxtarea {
border: 1px solid #BFC3C6;
font-size: 14px;
height: 200px;
overflow: auto;
}
It works like a charm now!
Please Log in or Create an account to join the conversation.
cdawolf wrote: The answer is not in the inputbox
It's in this part:
#Kunena table#kpostmessage .ktxtarea {
border: 1px solid #BFC3C6;
height: 200px;
overflow: auto;
}
I added in there the font size...now it looks like this:
#Kunena table#kpostmessage .ktxtarea {
border: 1px solid #BFC3C6;
font-size: 14px;
height: 200px;
overflow: auto;
}
It works like a charm now!
Thanks man, this fixed my problem
Please Log in or Create an account to join the conversation.
I'm facing the same problem in K1.6.4 and I'm using the default blue eagle template.
In which css file should I insert that code you are mentioning?
Is it Joomla's or Kunena's?
If it is Kunena, the template has 8 css files.
Also, some are marked as unwritable.
I appreciate some help,
Thanks
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
You either put it in your template.css or you change it directly to your kunena template file.
In the later case,the file needed is components/com_kunena/template/default/css/kunena.forum-min.css
Yet in the case of changing it in that template,bare in mind that if you change the template,
you need to implement that change in the new template's kunena.forum-min.css file as well!
Please Log in or Create an account to join the conversation.