batata Posted August 19, 2014 Share Posted August 19, 2014 hello everyone,Maybe i am asking a very strange question but, I am wondering if it is possible to use a different background for each product..I know this probably has to do with your theme, but maybe you all can still help me.if this is possible, can someone tell me how I can incorporate this in my cssFor example: how do i refer to my product page id in css ?Thanks!! Link to comment Share on other sites More sharing options...
dioniz Posted August 19, 2014 Share Posted August 19, 2014 You can do that on product page. Refer to product page with product id like this example .product-5 .columns-container{ background: #f6f6f6; } Link to comment Share on other sites More sharing options...
batata Posted August 20, 2014 Author Share Posted August 20, 2014 You can do that on product page. Refer to product page with product id like this example .product-5 .columns-container{ background: #f6f6f6; } Thanks !! I have tried this but the only problem is that the background than on every product page visible is while I actually want a different background for each product. Any idea what I'm doing wrong ? Link to comment Share on other sites More sharing options...
dioniz Posted August 20, 2014 Share Posted August 20, 2014 You need to do that for every product and change product-id .product-5 .columns-container{ background: #f6f6f6; } .product-6 .columns-container{ background: #f7f7f7; } .product-7 .columns-container{ background: #000; } etc... Link to comment Share on other sites More sharing options...
Recommended Posts