Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
1. Go to your Online store > Themes > Edit code
2. Open your theme.liquid file
3. Paste the below code before </body>
<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>