PDA

View Full Version : Changing link color in postbit only


Neo_Angelo
11-16-2006, 06:27 PM
Heya guys, how do i change just the posbit bit link colour so when people post any links that are posted are a different colour. since when i change the link colours in the MAIN CSS bit they change the whole forums links to the same color. i only want the links in a post to be different.

any idea's?

CyberAlien
11-17-2006, 09:36 AM
in postbit find this:<div id="post_message_$post[postid]">$post[message]</div>and replace with this:<div id="post_message_$post[postid]" class="message">$post[message]</div>then in extra css add code like this:div.message a, div.message a:visited { color: whatever; }
div.message a:hover, div.message a:active { color:whatever; }

Neo_Angelo
11-17-2006, 12:25 PM
thanks i'll give this a try

theybannedme
08-22-2008, 08:00 PM
Thanks, this worked for me after I also added:

div.message a:link { color: #0099ff; text-decoration: underline}

Next question is how can we do the same with the blogs?