We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Hide Rate option | Forum

Topic location: Forum home » Support » General Questions
Abbey
Abbey Aug 22 '17
Hi, what would I add to my custom css page to hide the rate system on photos?
I've tried inspecting the element and working from there but I can't seem to get it to disappear.
Darryl B Leader
Darryl B Aug 22 '17
This should take care of hiding the rating.

.ow_photo_item_info .ow_rates_wrap.ow_small, .ow_photoview_info_wrap .ow_photoview_info .ow_rates_wrap {
    display: none !important;
}
I'm guessing you would want to also hide the "Toprated" tab on the photo page as well since you don't want ratings. Here is a custom css that should hide the tab on that page.
a[href*="/photo/"][list-type="toprated"] {
    display: none;
}
The Forum post is edited by Darryl B Aug 22 '17
Abbey
Abbey Aug 23 '17
Hi Darryl, worked a treat, thank you so much :D