Support » Fixing WordPress » How to remove the border underneath my image links on my blog?

  • Resolved paulypants

    (@paulypants)


    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.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Delete “border-bottom” form “#middlecol a:link ” in css.

    Thread Starter paulypants

    (@paulypants)

    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:…

    Thread Starter paulypants

    (@paulypants)

    Genius! Thank you so much!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove the border underneath my image links on my blog?’ is closed to new replies.