How to customize the button of Nav-menu ?

Discussion in 'Dzonia WordPress Theme' started by artter, Jan 27, 2014.

  1. artter

    artter New Member

    Joined:
    Dec 27, 2013
    Messages:
    9
    Likes Received:
    0
    I want to customize the button of Nav-menu like this(themia theme style):

    menu_btn.png

    What's the step to do?
    Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu li {
    background: red;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    }
     
    #menu .ddsmoothmenu li a{
    color:brown;
    }
    #menu .ddsmoothmenu li a:hover{
    color:white;
    }
    In place of "red", "brown" and "white" you can put your color or color code.
    This will solve your issue.
     
  3. artter

    artter New Member

    Joined:
    Dec 27, 2013
    Messages:
    9
    Likes Received:
    0
    Sorry! The original button is too heavy. I just need to change the color of button to gray. The other menu items keep in text.
    Thanks
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page