Need help in css colors

arnux

New Member
Hello TEAM ;)

Okey, i have 1 problem in CSS.
When I set up the color or the link in css it changes all links color in the forum (forum, threads, link in thread), but how to change link color that it would change only links in threads?


Thanks in advance (bow)
 
goto "Edit Templates" >> Postbit & Postbit_legacy

search for:
Code:
[color=Red]<div id="post_message_$post[postid]"[/color]
add:
Code:
[color=Red]class="vb_postbit"[/color]
(if not already there)

..save.

in your Main CSS scroll down to Additional CSS Definitions..at the end add the following:

Code:
/* Here you can change the look of the post links */
.vb_postbit a:link, .vb_postbit a:visited
{
	color: #910000;
        font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
        border-bottom: 1px dotted #a1a1a1;
	text-decoration: none;
}

.vb_postbit a:hover, .vb_postbit a:active
{
	color: #1781b6;
        font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
        border-bottom: 1px dotted #a1a1a1;
	text-decoration: none;
}

done!..now change the colors to whatever you like, hope that helped.

-Mafi
 
Back
Top