MyBB Community Forums

Full Version: how to change font style and size here
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, anyone know how can i change the font size and style just here? without afecting the other parts of the forum

[Image: pqet.jpg]

i would like to look like here:

[Image: ydyn.jpg]

thanks
Open AdminCP > Templates & Style > Themes > YOUR THEME > global.css and add
.pbsize {
font-size: 11px !important;
}

Next, go to AdminCP > Templates & Style > Templates > YOUR THEMES TEMPLATES > Postbit Templates > postbit_classic and search for
{$post['user_details']}
Replace it with that:
<span class="pbsize">{$post['user_details']}</span>

Didn't try it, hope it works.
worked, i added this code to global.css:
.pbsize {
	font: 10px Verdana,Arial,Helvetica,sans-serif;
}

[Image: nbn1.jpg]

is possible to make it for
{$post['iplogged']}

i was trying to make it for this with the same strategy, but seems to not work Big Grin
Yes.
Search for
{$post['iplogged']}
and replace it with
<span class="pbsize">{$post['iplogged']}</span>