JeanPierre You are right. If I enable the sticky menu header from the theme's Customizer options then the ads collide with the header propperly.
However, I have disabled the sticky header from the theme Customizer and added it through CSS cause I had some issues with it. The theme I have is GeneratePress btw.
Sticky header is off in theme customizer: https://ibb.co/9tZ2RhC
And I added it with CSS instead...
/* STICKY MENU EVERYWHERE FIXED (OFF IN CUSTOMIZER) */
body:not(.logged-in) nav#site-navigation:not(.logged-in) {
position: sticky !important;
position: -webkit-sticky !important;
top: 0;
}
@media screen and (max-width: 600px) {
.admin-bar nav#site-navigation {
top: 0px;
}
}
Now about the sticky affiliate header, it's an element added through GP ELEMENTS.
Check this screenshot: https://ibb.co/mzBTXC2
Even if I ebabled the sticky menu header from the theme customizer I would still have a problem with the sticky affiliate header added through the GP ELEMENTS.
So, do you have any ideas how we can make this work?