matthew288
Member
Posted 1 year ago #
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!
Try adding the following to your theme's style.css:
.comment .avatar {
background: none;
}
matthew288
Member
Posted 1 year ago #
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?
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.
matthew288
Member
Posted 1 year ago #