• matthew288

    (@matthew288)


    When my visitors post comments their avatars (either the default icon or their gravatars) are surrounded by a black border. I’m using the WooThemes Typebased theme. I looked through the CSS stylesheet but couldn’t locate a setting to remove the border. An example of the comment avatar with the border is at http://img64.imageshack.us/img64/9383/commentew.png Thanks in advance!

Viewing 4 replies - 1 through 4 (of 4 total)
  • jkovis

    (@jkovis)

    Try adding the following to your theme’s style.css:

    .comment .avatar {
        background: none;
    }

    Thread Starter matthew288

    (@matthew288)

    That worked great. Thanks. It also automatically added a black border around images I inserted into a couple different pages (as opposed to posts). Would you know how to remove those as well?

    jkovis

    (@jkovis)

    Try using this:

    .page .post-content img,
    .comment .avatar {
        background: none;
    }

    Go ahead and remove the earlier code since the above code addresses both places.

    Thread Starter matthew288

    (@matthew288)

    Awesome. Thanks again!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Black border around images’ is closed to new replies.