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.
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
strange. How about now? https://imgur.com/a/eDVG2Tz
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
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
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.
In he mobile view the gap is huge. Please send code to reduce both.
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.
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