http://pau1.me - The border for the links keeps popping up underneath my image links in the middle col/blog posts. How do I remove it without removing the border decoration on the images? Feel free to look at my CSS. Please help me out. Thanks.
http://pau1.me - The border for the links keeps popping up underneath my image links in the middle col/blog posts. How do I remove it without removing the border decoration on the images? Feel free to look at my CSS. Please help me out. Thanks.
Delete "border-bottom" form "#middlecol a:link " in css.
I still would like to keep that for the text link.
Than you need a different class for image links.
Add to all image links in posts class="no-border"
<a class="no-border" href...
Add to css
#middlecol a.no-border {border-bottom:0px;}
Or if you can live with a normal text underline forget all above and simply add in css:
#middlecol a:link {text-decoration:underline}
and of course delete border-bottom:...
Genius! Thank you so much!!!
This topic has been closed to new replies.