XF 1.2 How to make these words big and bold?

Trying to figure out where or how to make these letters big and bold? Thank you View attachment 62213
In EXTRA.css try
Code:
.titleBar h1 {
font-size:  24pt;
font-weight: bold;
}
where the font-size is whatever you want.

That will also effect your forum title descriptions.

I think you can use
Code:
.forum_list .titleBar {
font-size: 18pt;
font-weight:normal;
}
to get around that and to adjust font-size to what you want.
 
Last edited:
The default style here is the default style for your board. If you have custom CSS, you will need to locate it and remove it from your style.
 
'Precisely' how do I enlarge the font size of my forum titles and forum descriptions?
When you say forum titles and descriptions are you referring to the categories of the forums or the node titles listed on the index page or what. If the simple forum titles it is
Code:
.node .nodeText .nodeTitle a {
font-size: 20px;
}
ind EXTRA.css (is the way I do it but I'm sure there is a style property for it).
The description below the node title should be
Code:
.node .nodeDescription {
font-size: 15px;
}

If you are referring to the Category titles then
Code:
.nodeList .categoryStrip .nodeTitle a {
font-size: 20px;
}
and for the description
Code:
.nodeList .categoryStrip .nodeDescription {
font-size: 20px;
}
All in EXTRA.css
 
Top Bottom