My website: https://kindredpeople.myshopify.com/
Pw: hellohello
Currently while my website load the page colour yellow #FFF993 flashes under each section.
Yellow #FFF993 is the default page colour of my theme.
You will need to go to my website to understand it. I’d like to remove this if possible.
Please help 
Hi
Your store is password protected. So the sections are not visible. See attached screenshot
But from what it appears the color is applied to your store “body” tag. and hence is appearing behind every section/component in your store. You will need to remove the color from there or add another background color to sections to cover over the body color
2 Likes
Hello - thanks for your reply
use the pw hellohello to see the site.
Could you tell me how to remove the colour from the body? I don’t think it will work to use another background colour to the sections as some are 2 colours.
1 Like
Add below CSS
body {
background: none !important;
}
Hit Like and Accept as Solution
1 Like
Hi
You can add the following in your theme.liquid file before the tag
body {background: none !important}
1 Like
Is that different from the css?
or do you mean the below?
body {background: none !important}
background: none !important;
}
1 Like