This is what I did to style links in my Posbit:
Find in your postbit/postbit_legacy template:
Code:
<div id="post_message_$post[postid]">
Replace with:
Code:
<div id="post_message_$post[postid]" class="vbpostbit">
Add this in your Style's Additional CSS Defitions: (Located in Main CSS)
Code:
.vbpostbit a:link
{
color: #848484;
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
border-bottom: 1px dotted #cdf16c;
text-decoration: none;
}
.vbpostbit a:visited
{
color: #848484;
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
border-bottom: 1px dotted #cdf16c;
text-decoration: none;
}
.vbpostbit a:hover, .vbpostbit a:active
{
color: #cdf16c;
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
border-bottom: 1px dotted #848484;
text-decoration: none;
}
You can change the CSS to make the links appear as you please, but code I provided will make your links look like this: