MyBB Community Forums

Full Version: Make Writing smaller in one section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
just wondering how can i make the writing smaller under the heading "Last Post" where it has the thread, date, and username

I know how to get to the themes part to edit just dont know what to edit. lol

http://www.holdenspares.com/

just to show u what im talking about.

thanks
ACP -> Templates -> Forum bit -> forumbit_depth1_forum_lastpost and find:

<span class="smalltext">

Remplace that code to:

<span style="font-size:11px">

U can play with the numbers, or you can go to Theme -> global.css and find smalltext

If you want to change the font-size of each element then U just need to add an SPAN attribute with style for example U want to change the size of the last post subject then U do something like this:

<span style="font-size:11px"><a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a></span>
(2011-03-26, 09:04 PM)^(-.-)^ Wrote: [ -> ]ACP -> Templates -> Forum bit -> forumbit_depth1_forum_lastpost and find:

<span class="smalltext">

Remplace that code to:

<span style="font-size:11px">

U can play with the numbers, or you can go to Theme -> global.css and find smalltext

If you want to change the font-size of each element then U just need to add an SPAN attribute with style for example U want to change the size of the last post subject then U do something like this:

<span style="font-size:11px"><a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a></span>

Didnt seem to work replacing that, could the code be wrong?