Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #38291
    RecoveryNC
    Member

    I need some help! The “secondary” menu color and highlight color are defaulting on green across the entire site, is there any way to switch that to purple? Specifically, #9F00C5, for http://www.rcnc.org

    #38311
    Sakin
    Keymaster

    @RecoveryNC: You can upgrade to Adventurous Pro theme where you will get detail color option in Theme Options panel. For more details about additional features in Adventurous Pro theme, check out theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    For fee version, you can try adding in the following css at “Appearance => Theme Options => Custom CSS” box.

    #header-right .widget ul.menu ul {
        border-color: #9f00c5;
    }
    #header-right .widget ul.menu li:hover > a,
    #header-right .widget ul.menu a:focus,
    #header-right .widget ul.menu .current-menu-item > a,
    #header-right .widget ul.menu .current-menu-ancestor > a,
    #header-right .widget ul.menu .current_page_item > a,
    #header-right .widget ul.menu .current_page_ancestor > a {
        color: #9f00c5;
    }
    #42403
    Highlander79
    Member

    If you go into style.css (another option other than using the custom CSS feature)
    around line 828, in the Menu section of the code, you should see this code

    #header-right .widget ul.menu li:hover > a,
    #header-right .widget ul.menu a:focus,
    #header-right .widget ul.menu .current-menu-item > a,
    #header-right .widget ul.menu .current-menu-ancestor > a,
    #header-right .widget ul.menu .current_page_item > a,
    #header-right .widget ul.menu .current_page_ancestor > a {
    	color: #7c9b30;
    }

    In the color: section at the bottom, put in your desired hex color

    #42425
    Sakin
    Keymaster

    @Highlander79: You shouldn’t edit or add any core theme files inside ‘adventurous’ theme directory as all your edits will be reverted back to original when you update or upgrade the theme. So, this is not the safe way to do it.

    The safe way to change the CSS style is either by adding your custom css in “Appearance => Theme Options => Custom CSS” box or by building child theme and adding it in your child theme style.css

    Thanks for your reply.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Menu Colors’ is closed to new replies.