-
AuthorPosts
-
May 21, 2019 at 10:18 pm #1103095
Hi, this is my WooCoomerce’s shop page: click here
How I can edit style? For example, change image background color? Or change title background color? Thanks
May 23, 2019 at 4:44 am #1103526Hey Pas7o,
You can add the following css codes in Quick CSS, located in Enfold > General Styling.
Change image background color:
.post-type-archive-product .thumbnail_container { background: white; }
Change title background color (including the arrow):
.post-type-archive-product .inner_product_header, .post-type-archive-product .inner_product_header .avia-arrow { background-color: #eee; }
Hope this helps.
Best regards,
NikkoMay 23, 2019 at 7:26 am #1103575Perfect! Thanks. Can you say me how I can change “add cart” and “see details” buttons background color, please?
I want change the colors (image, title, buttons backgrounds) also into a single product and a slider products.
Thanks
May 23, 2019 at 10:06 am #1103603Hi Pas7o,
This is for the buttons (the color is slightly changed because of the opacity):
#top .avia_cart_buttons { background-color: black; opacity: 0.8; }
As for the changing it to single product, I think the best way is to make the code global, so from the previous codes I gave replace .post-type-archive-product with #top, so from:
.post-type-archive-product .thumbnail_container { background: white; } .post-type-archive-product .inner_product_header, .post-type-archive-product .inner_product_header .avia-arrow { background-color: #eee; }
to:
#top .thumbnail_container { background: white; } #top .inner_product_header, #top .inner_product_header .avia-arrow { background-color: #eee; }
Best regards,
NikkoMay 23, 2019 at 11:12 am #1103623Ok thanks.
This code:#top .avia_cart_buttons { background-color: black; opacity: 0.8; }
It’s valid everywhere (page shop, single product, slider products)?
May 24, 2019 at 11:14 am #1103894Hi Pas7o,
Yes, it should be valid everywhere.
If it doesn’t work on some pages, just give us the link so we can check.Best regards,
NikkoMay 24, 2019 at 12:29 pm #1103911Ok thanks.
May 24, 2019 at 5:20 pm #1103954Hi Pas7o,
You’re welcome, just let us know if you need further assistance.
Best regards,
Nikko -
AuthorPosts
- You must be logged in to reply to this topic.