sorry, been busy, feel free to pm anytime.
what you are asking is easy in vb4 but not in vb3. i have not tested with plain postbit, but,
to do this, find in your post bit:
Code:
<div id="post_message_$post[postid]">
change this code to:
Code:
<div id="post_message_$post[postid]" class="vb_postbit">
then add to bottom of Additional CSS this:
Code:
.vb_postbit a {
color: blue;
background:none;
}
.vb_postbit a:hover {
color: Red;
background:none;
}
this way you can change colors and hover.
eg: blue or #0000FF.
let me know how ya go.
p.s if you want bold font or underline, just add:
your css would look like this:
Code:
.vb_postbit a {
color: blue;
background:none;
text-decoration:underline;
font-weight: bold;
}
.vb_postbit a:hover {
color: Red;
background:none;
text-decoration:underline;
font-weight: bold;
}