Log in

View Full Version : how i can color Usergroups


UaeStar
01-31-2007, 09:36 PM
hello

how i can color Usergroups i am useing Macromedia Dreamweaver 8





that a code i make it learn me how i can useing it's plz?

<style type="text/css">

<!--

.style4 {color: #C2AD32}

-->

</style>

<span class="style4">ddd</span>

webmazter
02-01-2007, 12:18 AM
Edit your usergroup.

Find "Username HTML Markup" field and put:
In the first field:
<span class="style4">

In the second field:
</span>

Remember to add in your <style> tag.
.style4 {color: #C2AD32}


You may want to consider this:
In the first field:
<span style="color: #C2AD32">

In the second field:
</span>

UaeStar
02-01-2007, 07:49 AM
i dont understad that
Remember to add in your <style> tag.

webmazter
02-01-2007, 09:05 AM
You will need to add this to your <head></head> tags

<style type="text/css">

<!--

.style4 {color: #C2AD32}

-->

</style>



Use the second method I suggest then you don't have to do the above.