Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1479479

    there is a unnecessary gap between header and content. It goes away on you start scrolling the page. But really there is no need to be there. I want the page to load without the gap. See video for full explanation.

    Please send CSS how to do this or instructions.

    #1479502

    Hey ausgesonnen,

    The link to the screenshot is not working. Please check the URL and include a link to where we can see the actual problem as well.

    Best regards,
    Rikard

    #1479568

    strange. How about now? https://imgur.com/a/eDVG2Tz

    #1479586

    Hi,

    The screenshot is still not available. Please make sure the image has finished uploading before retrieving the share links from Imgur. You can also try Savvyify or Dropbox.

    Best regards,
    Ismael

    #1479639
    #1479676

    Hi,

    Thank you for the short clip.

    The extra space is caused by this css rule:

    .html_header_top #top #main {
        padding-top: 300px !important;
    }

    Adjusting the top padding to 230px should remove the unwanted space.

    Best regards,
    Ismael

    #1479705

    Ok, the most I can reduce is down to 100px before the layout breaks. But that is still too much. What else can I do? Please see gap between header and content. It should be much less.

    #1479712

    In he mobile view the gap is huge. Please send code to reduce both.

    #1479714

    Ok I have set it back to sticky. becuase the gap is too huge other wise. So back to the plan to shrink the header.

    #1479773

    Hi,

    You can have different values depending on screen size, if you add your CSS in media queries. This will target mobile screen sizes for example:

    @media only screen and (max-width: 767px) {
      Add your mobile styles here
    }

    Best regards,
    Rikard

    • This reply was modified 1 month, 2 weeks ago by Rikard.
    #1481866

    find those entries in your css and korrekt them by:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 70px !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 30px !important;
      }
    }
Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.