- This topic has 4 replies, 3 voices, and was last updated 12 years, 11 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › Stylish Product Display 6
Tagged: Stylish Product Display 6
Hi, I was wondering if there was a way for the Stylish Product Display Options to inherit the parent theme colour style. For instance Stylist Product Fancy Display 6, [wp_eStore_category_products_fancy id=1 style=6] is black, is there a way for it to be white or another colour to match the theme colour. Thanks for your help.
Nope, the stylish product display templates will display exactly how it looks on our documentation here:
http://www.tipsandtricks-hq.com/ecommerce/stylish-product-display-options-for-wp-estore-829
However, you can customize the CSS and make it whatever color you want. This video tutorial might come in handy:
Ok thanks. I’ll check the video’s out. To make it a bit easier to find where to edit the CSS, can you tell me which file the [wp_eStore_category_products_fancy id=1 style=6] is in and how to change it to white. I’m not so good on coding but my son is, so would be helpful if I can tell him exactly where to look.
Appreciate your reply.
Hi,
When making custom CSS changes to eStore you should put your code in the wp_eStore_custom_style.css file.
So if you wanted to change the background color for your shortcode display you will put the following code in the above-mentioned file:
.eStore_fancy6 {
background-color: white;
}
Note you can change color value to suit your needs.
You should read the links and watch the video which admin advised you to do.
Thanks Peter, I will certainly watch the video. Appreciate your help.