Archived topic
Main menu and blog content overlapping secondary menu
3 replies · Started by raul on April 21, 2022
Hello, I recently changed themes and can't figure out why my blog post content areas seems to go above the secondary menu causing the menu to shrink. Also my main menus on desktop do not work cause of this, so it seems. Im thinking it may be a css problem but im not to sure. Any input would be greatly appreciatd..
Hi Raul,
It's because of this CSS:
https://www.screencast.com/t/2Jd8f8MWk3ab
body:not(.home):not(.woocommerce) .site.container {
margin-top: -40px;
}
If you don't want it to appear like this in your posts, change it to:
body:not(.home):not(.woocommerce):not(.post) .site.container {
margin-top: -40px;
}
If you don't want any overlapping for your entire site, you can just remove it.
Thank you so much.. it worked.
You are welcome :)