XF 1.5 subforum font size

can u give me direct solution?
Won't help you find other things in the future - I'd suggest you learn to use Chrome Developer Tools or the equivalent in your browser of choice.

Code:
.node .subForumList li .nodeTitle
should be the CSS designator you are looking for.

It could also use the
Code:
.node .subForumList li .nodeTitle a:link
or
Code:
.node .subForumList li .nodeTitle a:visited
for more specificity.
 
i am not programmer nor designer, isnt there an easy way to make the subforum/child forums font bigger?
It doesn't require a programmer or designer (I'm neither one either) - just someone that is familiar with their software that they use.
Use the provided code in your EXTRA.css with standard CSS font-size:YYpx, where YY is the numeric amount you want the size.
Code:
.node .subForumList li .nodeTitle a:link {
font-size:40px;
}
.node .subForumList li .nodeTitle a:visited {
font-size:20px;
}
would be an example. You (of course) would need to adjust the font sizes.

Some stuff can be controlled via the style properties in the ACP, but not everything.
 
Top Bottom