Main menu

Discussion in 'RoadFighter WordPress Theme' started by outsidebcn, Jul 5, 2013.

Thread Status:
Not open for further replies.
  1. outsidebcn

    outsidebcn New Member

    Joined:
    Jul 2, 2013
    Messages:
    12
    Likes Received:
    0
    A few issues about main top menu:

    1.- can outter background menu bar line be deleted?

    2.- can background menu bar height be modified?

    3.- if there are just a few section names on main manu, it appears aligned left with lot of empty space right. Can all main menu at once be centered in order to have same blank space left and right?


    Thanks
     
  2. Piyush

    Piyush Support Staff

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

    1. For your first issue,
    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .menu-wrapper {
    border: none;
    padding: 2px;
    }
    This will remove the background menu bar line.

    2. For second issue,
    Paste the code given below in Custom CSS
    Code:
    .menu-wrapper {
    height: 60px;
    }
    You can adjust the value of height as per your requirement.
    3. For Third issue,
    Paste the code given below in Custom CSS
    Code:
    #menu {
    text-align: center;
    }
    This will align the menu center in the menu bar.
     
  3. outsidebcn

    outsidebcn New Member

    Joined:
    Jul 2, 2013
    Messages:
    12
    Likes Received:
    0
    Great.

    And is it also possible to verticaly center text menu on menu background bar?

    Thanks in advance
     
  4. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu .ddsmoothmenu {
    margin-top: 18px;
    }
    You can adjust the value of "margin-top" as per your requirement.
    This will solve your issue.
     
  5. outsidebcn

    outsidebcn New Member

    Joined:
    Jul 2, 2013
    Messages:
    12
    Likes Received:
    0
Thread Status:
Not open for further replies.

Share This Page