MyBB Community Forums

Full Version: How to increase Thread List's Font Size?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to increase Thread List's Font Size?

[Image: dF9UOP.png]
Goto global.css and find:


table {
color: #000000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
}

Increase the font size.
Note that this will increase font size of the posts as well. If you want to increase size in index page thread list only then you have tomake a custom class in global.css with your desired font size and bind the index page listing texts with that class.
(2012-09-29, 01:23 PM)effone Wrote: [ -> ]Goto global.css and find:


table {
color: #000000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
}

Increase the font size.
Note that this will increase font size of the posts as well. If you want to increase size in index page thread list only then you have tomake a custom class in global.css with your desired font size and bind the index page listing texts with that class.

I tried what you said, and yes it did change the thread list's font size and so with the forum's font size, all I want is the thread list's font size, that's all. Smile
At the bottom of your global.css add the following:

.subject_editable {
	font-size:17px;
}

.subject_new {
	font-size:17px;
}

.subject_old {
	font-size:17px;
}
OK. in that case go to forumbit_depth2_forum template. Find this code:

<strong><a href="{$forum_url}">{$forum['name']}</a></strong>

and make it:

<div class="largetext"><strong><a href="{$forum_url}">{$forum['name']}</a></strong></div>