Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #214100

    Is there a way to get the Enfold small fixed header to no change size and re-size the logo?

    #214179

    Hey!

    Try adding this code to the Quick CSS:

    #header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
    height: 88px !important;
    line-height: 88px !important;
    max-height: none !important;
    }

    Cheers! 
    Josue

    #228711

    Many thanks! In my case it worked perfectly with a variant (in order to not affect the spacement of menu’s sub-itens):

    
    #header_main .container, .logo img, .logo a {
       height: 88px !important;
       line-height: 88px !important;
       max-height: none !important;
    }
    
    #228849

    Great @akazoubsky.


    @gjankowski
    , did it work for you?

    Cheers!
    Josue

    #229220

    Yes @Josue,

    Yes, but with some modifications because I want the header to be a little bit higher than the image (120px in my case). So I broke de code in two pieces:
    `
    #header_main .container {
    height: 140px !important;
    line-height: 140px !important;
    max-height: none !important;
    }
    #header_main .logo img, .logo a {
    height: 120px !important;
    line-height: 120px !important;
    max-height: none !important;
    padding-top: 10px !important;
    }
    .

    Thank you.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Enfold fixed header’ is closed to new replies.