Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #45607
    wpadmin
    Participant

    Hi,

    This post is about changing hover style and color of links in sidebar widgets and content.

    – I’d like to change the Sidebar Widget Link HOVER Color which by default is green to #e17c05.
    – same question for the paging at the bottom of featured page slider.
    – I’d like the links in content to be bold and hover not underlined but different color.

    Could you please help me to custom the css?

    Thanks a lot

    http://geoprisms.org/wpdemo/

    #45617
    Sakin
    Keymaster

    @Peter: You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    /* For Widget Link Hover Color */
    .widget-area .widget a:hover {
        color: #e17c05;
    }
    /* For Slider Controller Color */
    #controllers a:hover, 
    #controllers a.active {
        background-color: #e17c05;
    }
    /* For Content Link Bold */
    #content a { 
        font-weight: bold;
    }
    /* For Content Link hover remove underline */
    #content a:hover { 
        text-decoration: none;
    }
    #45628
    wpadmin
    Participant

    Thanks a lot!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘hover color css in sidebar widget’ is closed to new replies.