MyBB Community Forums

Full Version: What css property controls thread title?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What css property controls thread title?

I want to make the thread title bigger and a different font.
Where you want it bigger? In Index? ShowThread?

The property is shared and common. If you wanna modify the style of only Thread title - you have to bind it with a custom class or id.
You cannadd CSS in within the HTML of concerned template.

For thread titles you need to edit forumbit_depth1cat template.

In that you need to add a HTML code attributing as such and enclose the thread or cat description in between span tags.

<span style="font-size: 15px; font-weight: bold;">thread title attribute here</span>

This will solve your question.

Regards,
I would go with the suggestion from Effone. rather than adding an inline style you can add a second class, like this:

<table>
<tr>
<td class="thead glamour">some stuff</td>
//other table bits here
</tr>
</table>

and then create a class in your css called glamour