Customizing Menu Bar

Discussion in 'Infoway WordPress Theme' started by robert l, Oct 11, 2013.

  1. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    Hi Support,

    1. How do I get rid of the dashed white lines around the menu bar?

    2. How do I change the color of the font to a lighter gray?

    Screenshot attached to reference. Thanks much!

    ~ Robert
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

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

    1. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .menu_bar {
    background: none;
    }
    This will remove the border of menu bar.

    2. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    #menu .ddsmoothmenu li a {
    color: lightgray;
    }
    In place of "lightgray" you can put your color or color code.
    This will change the menu font color.
     
  3. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    Thank you.

    I used the code for the menu background. However, I'd like to keep the background black (with light gray font), while not having the white dashed line around it.

    Please advise...
     
  4. Piyush

    Piyush Support Staff

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

Share This Page