Menu

Discussion in 'Andrina WordPress Theme' started by gavmag2000, Mar 6, 2013.

  1. gavmag2000

    gavmag2000 New Member

    Joined:
    Jan 12, 2012
    Messages:
    8
    Likes Received:
    0
    Hi

    How can I change the menu at the top of the page to have buttons instead of just wording.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a {
    background-color: teal;
    border-radius: 20px;
    }
    Put your background Color and border radius inplace of teal and 20px respectively.
    This will solve your issue.
     
  3. gavmag2000

    gavmag2000 New Member

    Joined:
    Jan 12, 2012
    Messages:
    8
    Likes Received:
    0
    Thanks. So how do i do it for all the top menu items? Is it possible to make it square? website is www.dischembaby.co.za
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a {
    background: red;
    }
    #menu li a:hover {
    background: red;
    }
    Inplace of "red" put your color code.
     

Share This Page