menu bar color and

Discussion in 'Infoway WordPress Theme' started by honory2009, Dec 30, 2014.

  1. honory2009

    honory2009 Member

    Joined:
    Oct 10, 2013
    Messages:
    169
    Likes Received:
    3
    If I want to change the menu bar color , can you let me know the coding?

    And for each menu item, when I hove over the menu, there is slightly color change. how to put a bold color of my choice?
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .menu_bar {
    background: #3399CC;
    }
    Change color/color code in place of #3399CC in above code according to your need to change color of menu bar.
    Code:
    #menu li:hover a, #menu li.current_page_item a {
    background-color: #0aa8e4;
    }
    
    Change color/color code in place of #0aa8e4 in above code according to your need to change color of menu on hover.
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page