Log in

View Full Version : Links appearance in posts


silurius
11-04-2005, 05:44 PM
Links in my posts are hard to see, because they are controlled by the same settings that dictate link appearance in other areas. I would like to customize how links appear inside posts in a unique way. Is this a template edit and if so, which template and how to edit?

epicbear
08-27-2006, 02:39 PM
I just did this. In the templates:

postbit
postbit_legacy

I changed:

<div id="post_message_$post[postid]">$post[message]</div>

to

<div class="message" id="post_message_$post[postid]">$post[message]</div>

and added this to my style sheet:

.message a:link
{
color: #576389;
font-weight:bold;
}
.message a:visited
{
color: #576389;
font-weight:bold;
}
.message a:hover
{
color: #FF0000;
text-decoration: none;
font-weight:bold;
}