Hi,
I'd like help with increasing the size of the normal comment text. I tried playing with the css and managed to change every other font size than the comment text itself. I'm using You Joomla's younews template.
Is it possible to add new BBCODE buttons for changing fornt size and colour?
Thank you for giving us newbies chance to learn.
You could add a button that passes additional css to the #comments .comment-body. I'm not a CSS guy so can't be too specific. However, you can have an 'on-click' event (css triggered like the a:hover, just mybutton:click instead) that does 'comment-body {font-size:14px;}' or some such. Again, not my area.
for simply making the text body size bigger change this line:
#comments .comment-body {my sites custom junk}
You can just add 'font-size: 12px;' which would make the font size in the main comment display box 12px.
#comments .comment-body {everything else that was here before;font-size: 12px}