i use a template from build your store ai so its not on shopify but pretty much i cant change the color of the background of my product information page
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Hey there @hiitsmessi Follow the steps below and let me know if it works for you
- Go to your Online store > Themes > Edit code
- Open your theme.liquid file
- Paste the below code before
<style>
{%if template contains 'product'%}
body{
background:red !important;
}
{%endif%}
{%if template contains 'collection'%}
body{
background:green !important;
}
{%endif%}
{%if template contains 'page'%}
body{
background:blue!important;
}
{%endif%}
<style>