
-
AuthorPosts
-
March 16, 2025 at 3:57 pm #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.
March 17, 2025 at 9:13 am #1479502Hey 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,
RikardMarch 17, 2025 at 9:29 pm #1479568strange. How about now? https://imgur.com/a/eDVG2Tz
March 18, 2025 at 1:47 am #1479586Hi,
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,
IsmaelMarch 18, 2025 at 4:15 pm #1479639March 19, 2025 at 2:23 am #1479676Hi,
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,
IsmaelMarch 19, 2025 at 10:01 am #1479705Ok, 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.
March 19, 2025 at 10:50 am #1479712In he mobile view the gap is huge. Please send code to reduce both.
March 19, 2025 at 11:00 am #1479714Ok I have set it back to sticky. becuase the gap is too huge other wise. So back to the plan to shrink the header.
March 20, 2025 at 9:33 am #1479773Hi,
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.
April 22, 2025 at 8:05 pm #1481866find 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; } }
-
This reply was modified 1 month, 2 weeks ago by
-
AuthorPosts
- You must be logged in to reply to this topic.