PDA

View Full Version : Font size increase in postbit


Purcelly
12-13-2011, 10:19 PM
Was wondering if anyone could help, struggling to get this to happen, I've tried HTML, even tried stylevars but no idea where to start.

I'm looking at increasing the font size of my usernames in the postbit template.

http://img33.imageshack.us/img33/3663/screenshot20111213at231.png

As you can see at the moment they're quite small and would like to make them larger.

On our previous vB3 installation we were able to do it.

http://img543.imageshack.us/img543/4779/screenshot20111213at232.png

Any help would be appreciated!

Seven Skins
12-13-2011, 10:38 PM
You can add this to additional.css template.

.postbitlegacy .userinfo a.username, .eventbit .userinfo a.username {
font-size: 20px;
}

Purcelly
12-13-2011, 10:50 PM
Potentionaly a very dumb question but if I'm not using the legacy template do I just use
.postbit
Also how do I execute this in the postbit template or is it automatic?

Seven Skins
12-13-2011, 11:21 PM
Try this.

.postbit .userinfo .popupmenu a.popupctrl,
.postbit .userinfo_noavatar .popupmenu a.popupctrl {
font-size: 20px;
}


It will get executed automatically when you add this to additional.css template.
Or you can add this to the bottom of the postbit.css template.

Purcelly
12-13-2011, 11:25 PM
That worked a treat!
Thanks!!