Font Size

strongarm_playa

Active member
Im trying to change my font size for my forum Categories & forum sections. I feel like everything is just a little too far spread out. So If this isnt in relation to the font size, then maybe someone can lead me in the right direction. Thx
 
Im trying to change my font size for my forum Categories & forum sections. I feel like everything is just a little too far spread out. So If this isnt in relation to the font size, then maybe someone can lead me in the right direction. Thx


I'm unsure whether you can do this through the style properties I'd imagine you can but you can throw the following in the extra.css template and you can input the font size value to your preference:

Change category font size
Code:
.nodeList .categoryStrip .nodeTitle a {
    font-size: 14px !important;
}

And font sizes for your forum sections
Code:
.node .nodeText h3 {
    font-size: 12px;
}
 
Top Bottom