Site logo

Archived topic

Customize and normal view differ from each other

5 replies · Started by Katerina Teresidi on March 7, 2022

Viewing posts 1–6 of 6

Dear Team,
I have an issue with the view of my site. The merging of the header with the content on my main page worked.
1) But then I began to make basic changes on the page hero, like change the spacing (padding) of the page hero container.
2) I have also implemented a two-container-grid inside a container on my front page.
Now if I examine my front page in the "Customize" view everything looks fine. But as soon as I change to normal view, the site breaks. I don't understand why.
I have purged cache and I have tried out an anonymous-window. The site still looks broken.
Please help me to understand what I have done wrong and especially how the two views can differ so much from another.
Thank you very much!
3) My second question is: when I set the menu from currently "above header" to "below header" - why does it display somewhere in the upper half of the front page hero container? Which changes should I make to make the sticky menu appear literally below the picture inside the page hero-container and stick to it?
Great Greets!

Hi there,

ON #2 - i logged into your site, and i Purged the Cache and Purged the Minify Cache and this fixed the layout - can you check and confirm that ?

Yes, thank you very much! I have forgot about the minify cache! You resolved the Nr.1 and 2. Thank you!
Can you give me an advise about Nr.3?
I wish you a great evening!!

Yes, I was curious to know how this can be realised!

Hi Katerina,

If you want to achieve the result David showed, you don't need to merge the header with content using a header element.

Instead you can try this CSS to make the header fixed at the bottom:

.site-header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.site-footer {
    margin-bottom: 100px;
}
This archived topic is closed to new replies.