Incorrect Display on Live Site

Solved
ketofoods
New Member
6 0 0

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

Correct Display.png

 

Incorrect display: whit announcement bar and transparent drop down menu

Incorrect Display.png

 

Can anyone help correct this?

Accepted Solution (1)
BSS-Commerce
Shopify Expert
2820 376 394

This is an accepted solution.

Just add this code snippet:

 

.drawer__contents {
    background-color: #fff;
}

 Result:

 

view (15).png

 

Good luck!

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

View solution in original post

Replies 8 (8)
Zqdo
Shopify Partner
803 32 61

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

banned
ketofoods
New Member
6 0 0

Absolutely: zerobrands.com.

BSS-Commerce
Shopify Expert
2820 376 394

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.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

ketofoods
New Member
6 0 0

Hi, here's the link: zerobrands.com

BSS-Commerce
Shopify Expert
2820 376 394

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

 

1. Online Store -> Themes -> Edit code:

 

view (12).png

 

2. 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

 

Good luck!

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

ketofoods
New Member
6 0 0

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?

Mobile menu error.png

BSS-Commerce
Shopify Expert
2820 376 394

This is an accepted solution.

Just add this code snippet:

 

.drawer__contents {
    background-color: #fff;
}

 Result:

 

view (15).png

 

Good luck!

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

ketofoods
New Member
6 0 0

Thank you!