MyBB Community Forums

Full Version: Change size of name?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://d.pr/i/Y5ZR

How do I edit the name to be 12px?Confused (as you see its larger)

this is the current code;
<a style="font-size:12px" href="{$lastpost_link}" title="{$full_lastpost_subject}">{$lastpost_subject}</a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}
Quote:<a style="font-size:12px" href="{$lastpost_link}" title="{$full_lastpost_subject}">{$lastpost_subject}</a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}

As you can see now it's 12px , "font-size" . If you want it to be smaller change it to 10,9,8 etc.
I tried, even editing it to 2, the size of the name is still the same cos of the </a>
Yeah i made a mistake.

It's defined in <a> and with style. You have to change that style font size but if you do that you will change everything there what is in the <a> tag, to new size of font. You might add new style to your css and then put "{$lastpost_profilelink}" in that new style with <a>. That should work i think.