• Hello,

    I saw you already gave the code for changing the navigation menu’s hover color, but is there also a way to change the color of the Site title and other words and icons that appear in blue into the orange used in the WEN Associate theme?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author WEN Themes

    (@wenthemes)

    Orange color used in WEN Associate is ff794c. You can use this color you style your navigation. Put your CSS in Custom CSS under Theme Options -> Advanced.

    Thread Starter andreaguitar1

    (@andreaguitar1)

    Hello,

    Thanks for your answer.
    But I’m not sure I understand.

    The code I saw in another post (see here below) only changes the hover color of the Primary menu on Top of the page. The menu’s in the sidebar (f.e. custom menu) and the site title are not affected.

    Is there a way to change the blue color also in the sidebar hover text and also in the site title?

    I’m sorry, I’m a complete newb when it comes to code, I thought that maybe there was a simple way of just replacing all blue text with another color.

    #site-navigation li.current_page_item a,
    #site-navigation li.current-menu-item a {
        color: #ff0000;
    }
    #site-navigation .current_page_item a::after,
    #site-navigation .current-menu-item a::after,
    #site-navigation ul li a:hover::after {
        background-color: #ff0000;
    }
    #site-navigation li a:hover {
        color: #ff0000;
    }
    Theme Author WEN Themes

    (@wenthemes)

    Try following CSS.

    #site-navigation li.current_page_item a,
    #site-navigation li.current-menu-item a,
    .widget ul.menu li.current_page_item a,
    .widget ul.menu li.current-menu-item a
    {
        color: #ff794c;
    }
    #site-navigation .current_page_item a::after,
    #site-navigation .current-menu-item a::after,
    #site-navigation ul li a:hover::after {
        background-color: #ff794c;
    }
    #site-navigation li a:hover,
    .widget ul.menu li a:hover {
        color: #ff794c;
    }

    Thread Starter andreaguitar1

    (@andreaguitar1)

    Thank you.

    That works with the top and sidebar menus.
    However it doesn’t work with all the text in blue.

    I think the easiest solution is to try to find a color that matches well with the original blue, then the combination will be ok!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change color theme from WEN Business to Associate’ is closed to new replies.