Topic: How to change font style of the Nickname

I we browsed through css styles of my punbb forum but i couldn't find option about Nicknames. I just want to keep all my current font settings but i want to have just for Nicknames an another font. Is that possible and how?

Thanks!

2

Re: How to change font style of the Nickname

you mean there username?

you would have to give the username part in viewtopic.php a new id then add it into yourstyle.css

Re: How to change font style of the Nickname

Mark wrote:

you mean there username?

you would have to give the username part in viewtopic.php a new id then add it into yourstyle.css

Thanks, i am gonna to try that smile

4

Re: How to change font style of the Nickname

You can't use an id because every username on the page would have the same id. Id's have to be unique  i.e. one per page. Just use the classes that are already there in a descendant selector, something like

div.postleft dl dt {}

If that doesnt work just increase the selectors specificity e.g.

div.blockpost div.postleft dl dt {}