Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #339247

    Hi,
    I tried putting in some CSS from another enfold site I have to add space above and below the logo, but it is not working.

    Also-I would like the main nav font to be all caps and spaced letters. Like the

    The subnav on “Gift Boxes” show to be HUGE font

    • This topic was modified 10 years ago by Josue.
    #341007

    Hey!

    Try adding this code to the Quick CSS:

    .avia-menu-text {
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 1.8px;
    }
    .sub-menu .avia-menu-text {
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1.2px;
    }

    Adjust as needed.

    Cheers! 
    Josue

    #341067

    Thanks!
    I assume the sub-menu has inherited the Uppercase. How to make it normal? I tried to put “normal” or “initial” where “uppercase is and tried adding “!important;”

    I am also trying to tighten up the space under the menu.

    #341071

    Hey!

    Modify the submenu code to this:

    .sub-menu .avia-menu-text {
        text-transform: none !important;
        font-size: 14px;
        letter-spacing: 1.2px;
    }

    Add this to tighten the space in the submenu:

    .sub-menu a {
        padding: 4px 15px !important;
    }

    Best regards,
    Josue

    #341073

    Not the space IN the submenu, but below the menu bar between MENU and CONTENT

    Thanks! you guys are the best.

    #341074

    Hi!

    Try with this:

    #header {
        padding-bottom: 50px;
    }

    Adjust as needed.

    Cheers!
    Josue

    #341076

    I can’t get it to budge. I put 0px and added !important;

    #341082

    Hey!

    Discard that, add this instead:

    main.template-page.content {
        padding-top: 0;
    }

    Regards,
    Josue

    #341101

    Thanks again, but I am having problems controlling it.
    It works with a padding of 0, but if I put a 4 in there, it goes back to where it was originally.

    #341102

    Hi!

    If you are going to use a fixed value you need to add “px”:

    main.template-page.content {
        padding-top: 5px;
    }

    Best regards,
    Josue

    #341125

    I have a fairly wide group of logos in the header and a lot of pages in my top-level navigation. It fits well in a 1024px wide screen, but when I make the browser window more narrow, the menu overlaps the logo significantly until it gets narrow enough to activate the right justified drop-down menu. How can I activate the right-justified drop-down menu navigation earlier?

    #341142

    Hi!

    Yes, you can change that setting in Enfold > Header > Mobile Menu.

    Cheers!
    Josue

    #341148

    re: “If you are going to use a fixed value you need to add “px”:”
    oh man- I’m learning!! thanks

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Need space between logo and menu’ is closed to new replies.