The Kunena team has announce the arrival of Kunena 6.4.9 [K 6.4.9] in stable which is now available for download as a native Joomla extension for J! 5.0.x/5.1.x/5.2.x/5.3.x/5.4.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 6.4
The Kunena team has announce the arrival of Kunena 7.0.1 [K 7.0.1] in stable which is now available for download as a native Joomla extension for J! 5.0.x/5.1.x/5.2.x/5.3.x/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
Important note: Go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated. This is particularly necessary for major version jumps so that the table changes are adapted.
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
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.
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;
}
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;
}
You add the code to the end of your Joomla site template file. If you add the lines of CSS to your Joomla site template file you will not ever have to worry about changing this again when you upgrade Kunena. Simple.
@dimonju
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!