Why is my live site displaying incorrectly?

Our site has been live for a couple weeks now, but it is now not displaying correctly when you visit the web address. It looks totally fine in the Theme Editor (see below), but when I view it at the web address, some aspects are not displayed correctly: Very top announcement bar should be grey but appears white, navigation drop down menu is transparent when it should be white, missing buttons, etc.

Correct in theme editor: grey announcement bar and white drop down menu

Incorrect display: whit announcement bar and transparent drop down menu

Can anyone help correct this?

Glad to help. Can you share the link to your website?

Hi
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Absolutely: zerobrands.com.

Hi, here’s the link: zerobrands.com

I’m not sure how your actions led to the incorrect color, but you can try the following steps:

  1. Online StoreThemesEdit code:

  1. Find the theme.css file and add this code snippet at the end of the file, then click Save.
.announcement-bar{
    background-color: #f3f3f3;
}
.site-nav__item .megamenu, .site-header{
    background-color: #fff;
}

Result:

![view (13).png|1853x441](upload://dUooaNy68vKRRpdc0hJvCWHRlUN.png)

Good luck!

Thank you for providing this solution! It seems to have solved the problem, so I think I will need to do this to each individual element. The desktop menu colors are correct, but it appears transparent on mobile, any idea how to fix that aspect?

Just add this code snippet:

.drawer__contents {
    background-color: #fff;
}

Result:

Good luck!

Thank you!