Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #207245

    Hi guys,

    I am using Fixed header with social icons and use the below css to fix my header size:

    #header_main .container, .main_menu ul:first-child > li > a {
    height: 90px !important;
    line-height: 90px !important;
    }

    html.fixed_header #main {
    padding-top: 90px;
    }

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

    Problems:
    1) But I keep getting a small layer appearing below the header > http://imgur.com/umzh28O
    2) logo is unrecogniseable.

    Ideally I want the header to be reduced in size (say 90 px) and logo to remain one size regardless of scrolling.

    Thanks for your help.

    #207253

    Hey tusing!

    The space below he header is the main div padding. You can adjust it using this:

    .fixed_header.social_header #main {
    padding-top: 117px;
    }

    Please give us a link to the actual website.

    Cheers!
    Ismael

    #207270
    This reply has been marked as private.
    #207277

    Hey!

    If you have this code on Quick CSS:

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

    Please replace it with:

    .logo img, .logo a {
    height: 90px !important;
    line-height: 90px !important;
    max-height: none !important;
    }

    Replace the code that I gave you with:

    .fixed_header.social_header #main {
    padding-top: 111px;
    }

    Remove the title using this:

    #top .alternate_color.title_container .main-title {
    display: none;
    }

    Adjust the breadcrumb container height using this:

    #top .title_container .container {
    padding: 10px 0;
    min-height: 30px;
    }

    Best regards,
    Ismael

    #207296
    This reply has been marked as private.
    #207339

    Hey!

    Please add following code to Quick CSS as well

    .title_container .breadcrumb { left: 0; }

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Header resizing issues’ is closed to new replies.