Custom CSS Required

  • Unknown's avatar

    Hello. My sites are http://www.propcorner.in and http://www.thetechpost.in If you see the sidebar on both sites there is a blue like and dislike button? Is it possible to remove the text “Like” from the thumbs up and maybe change colours of the buttons through custom css?

    Plugin name is Rating Plus.

    Propcorner – Canard, The Tech Post – Nikau

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    You can use the following CSS for those items:

    /* Hide 'Like' Label */
    
    .widget_ratingpluswidget .likebtn-label {display: none;}
    
    /* Thumb Color */
    
    .lb-style-custom .likebtn-icon {
    color: #000000 !important;
    }
    
    /* Thumb Hover Color */
    
    .lb-style-custom .likebtn-icon:hover {
    color: #cccccc !important;
    }

    Generally it’s best to avoid using !important, but the colors are set with inline styling, so this is a way to override their defaults.

  • The topic ‘Custom CSS Required’ is closed to new replies.