Infoway second navi menu

Discussion in 'Infoway WordPress Theme' started by angmyma, Jan 6, 2014.

  1. angmyma

    angmyma New Member

    Joined:
    Jul 30, 2012
    Messages:
    18
    Likes Received:
    0
    Is there a way to add a second navigation menu? I need a second menu above the logo and either above or below that top info bar.

    Also, how do I make the text smaller on the navigation menu?

    Thanks!
     
  2. Piyush

    Piyush Support Staff

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

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.


    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard to change the font size of menu bar.

    Code:
    #menu .ddsmoothmenu li a {
    font-size: 12px;
    } 

    You can change the value of "font-size" as per your requirement.
     
  3. angmyma

    angmyma New Member

    Joined:
    Jul 30, 2012
    Messages:
    18
    Likes Received:
    0
    It didn't reduce the drop down menu pages. How do I also reduce the size of the text of the down down pages?

    Also, how do I reduce the white space between the page name and the edges of the button?
     
  4. Piyush

    Piyush Support Staff

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

    angmyma New Member

    Joined:
    Jul 30, 2012
    Messages:
    18
    Likes Received:
    0
    I've attached a screen shot. Thanks.
     

    Attached Files:

  6. 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 a {
    font-size: 12px;
    padding: 4px 4px 4px 4px;
    } 
    #menu .ddsmoothmenu li li a{
    font-size: 12px;
    } 
    You can adjust the value of "font-size" and "padding" as per your requirement.
    This will solve your issue.
     

Share This Page