- This topic has 7 replies, 2 voices, and was last updated 9 years, 8 months ago by .
Viewing 8 posts - 1 through 8 (of 8 total)
Viewing 8 posts - 1 through 8 (of 8 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 › eStore fancy2 product display formatting
Hi, I’m using fancy2 to display my product. Is it possible to change the font colour so that it matches my theme? Can I remove the grey gradient so that the box is just white? If so, how and where do I do this. Fancy1 uses the correct font colours but I prefer the positioning of the price, quantity and add to cart button with fancy2 – it looks tidier.
[http://www.jenjenscupcakery.co.uk/cupcakes/standard/]
Thanks in advance for your help.
Jen.
Grab this plugin:
https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Then add the following CSS tweak to remove the gradient background:
.eStore-product-fancy2{
background: none !important;
}
Brilliant. Thank you! I’ve made the change and it looks better. I just need to change the font and font colour now. Could I do that using this plugin or should I find it in the code?
I’ve tried adding the following code using the custom css plugin but the font hasn’t changed. Am I doing something wrong?
.eStore-product-fancy2-product-name{
color:#ff868f
}
.eStore-product-fancy2-product-description{
color:#666666
}
Try the following:
.eStore-product-fancy2-product-name{
color:#ff868f !important;
}
.eStore-product-fancy2-product-description{
color:#666666;
}
I’ve added the !important and unfortunately it hasn’t made any difference…any other suggestions?
Thanks.
There is probably some other element there conflict with it. A developer will need to help you with this customization. Use the following option:
Ok Thanks for your help.