Quote:
Originally Posted by Olli460
I love this style but there are minor things which I hope you can help me with. For the forum names on the homepage, they arent underlined, as well as everything else that is supposed to be underlined like usernames and stuff like that. I looked through style options, but couldnt find what I needed to fix.
|
I found the best way to manage user names is to use CSS...
In the markup opening tag enter (enter the appropriate name for each user group adminmarkup, supermodmarkup, modmarkup, etc....)
Code:
<span class="adminmarkup">
In the closing tag enter
Then in your the style you would like it to display in, goto the main CSS and scroll down to "Additional CSS Definitions" and at the end enter
(remember to enter markup for each user group)
Code:
/ ***** Usernames Markup ***** /
.adminmarkup
{
color:red;
font-weight: bold;
Text-Decoration: Underline;
}
Now you can control the color, font, and underline
If you just want the underline just enter
Code:
/* ***** Usernames Markup ***** */
.adminmarkup
{
Text-Decoration: Underline;
}