Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #98090
    phillycontemporary
    Participant

    Hi again,

    I’d like to change a lot of the standard blue accent colors in the theme, specifically:

    -The blue box behind the search bar icon on the top menu
    -The blue hover color on the ‘Read More’ button on the featured Image slider
    -The blue color of all hyperlinks in page/post text

    Thank you for any help you can offer, and thank you for your help so far!

    #98091
    phillycontemporary
    Participant

    To add onto my last post:

    I’d also like to change the color of the footer navigational menu item text–Is there a CSS for this as well?

    Thank you!

    #98143
    Mahesh
    Participant

    @phillycontemporary: The color options is built-in in Pro version. I recommend you to upgrade to Pro. But if you want it in Free version anyway, it can be done with Custom CSS. Go to Dashboard=> Apperance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /* blue box behind the search bar icon on the top menu */
    .site-header .social-networks li .fa-search {
        background-color: #ffff00;
    }
    
    /* blue hover color on the ‘Read More’ button on the featured Image slider */
    #feature-slider .more:hover {
        background-color: #00a3e6;
        border-color: #00a3e6;
        color: #fff;
        text-decoration: none;
    }
    
    /* blue color of all hyperlinks in page/post text */
    a {
        color: #00a3e6;
    }
    
    /* color of the footer navigational menu item text */
    .footer-b .footer-nav a {
        color: #ff00ff;
    }

    Note: Please change the colors as desired.

    Regards,
    Mahesh

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change blue accent color of hyperlinks / hover colors, etc.’ is closed to new replies.