PDA

View Full Version : Big Username


ShawnP
01-23-2012, 09:40 PM
How do I make my forum users have a bigger username in the postbit? I've looked up everything I could and still couldn't figure it out. I am running version 4.1.8.

I know about the additional.css code blabla but it doesn't work. Is there anything I am missing?

Lynne
01-24-2012, 04:41 PM
try stylevar "font" Or, you will need to add code to the additional.css template like (this is for the postbit_legacy):

.postbitlegacy .userinfo a.username {font: 17px;}

tommyxv
02-09-2012, 06:08 AM
try stylevar "font" Or, you will need to add code to the additional.css template like (this is for the postbit_legacy):

.postbitlegacy .userinfo a.username {font: 17px;}

Hey Lynne, it's actually this....

.postbitlegacy .userinfo a.username {font-size: 17px;}

Lynne
02-09-2012, 04:08 PM
You are right. I mean, font is a valid property, however since it is only the font-size we are concerned with, then it is best to be more specific. Thanks for pointing that out!