Graphic [Post Ratings] Remove unwanted 'Like' picture

ZerpMC

Member
This is probably a stupid question, but I bought the Post Ratings add-on and there is a thumbs-up icon on the very left of the ratings bar that I do not want. How do I get rid of this?

What it looks like:
Screen shot 2013-07-27 at 2.46.26 PM.webp
^
This is the thumb I want to get rid of.
 
With a link to your forum, specifically the page where this is occuring so the person helping can debug the issue
 
This is a common issue with custom styles that have decorated the stock likes bar with a thumbs up image. You need to add a CSS rule to hide this background/image.
 
Add to EXTRA.css:

Code:
.message .likesSummary { padding-left: 5px !important; background: none !important; }
 
Top Bottom