Digital experiences for all disciplines
Forum Replies Created
-
-
another one i’m having a problem with is the hover color of the “+ Add to shopping bag” text on the button next to the product photo of a product’s page. i tried:
.woocommerce form .cart button a.single_add_to_cart_button:hover color: #999999 !important; }
which works in firebug but not on the actual style editor when live.
i’m having the exact same issue and was just about to post this very question. subscribed. hope there’s a fix.
That solved it perfectly, thanks Ed and Melanie!
This reply has been marked as private.not yet, still waiting for a response from support. They’re usually fast.
Perfect, that worked! Thanks so much guys for the great support. In case it helps anyone else, my sf-header.php file was in /sf-content-display/
This reply has been marked as private.Some are marked as Featured so that they can appear on the “Featured” slider, but I tried un-featuring all the sale items and they still all show up on the “On Sale” mini box.
This reply has been marked as private.I recommed a SEARCH by Theme, it’d be GREAT!.
i second this, thanks!
Perfect, that worked! I didn’t realize the featured image is the main photo, I was adding the main photo to the gallery by mistake. Thanks for the support guys!
Hi Laranz, thank you!!
That worked but with a small edit. The .post-7606 part was effecting the whole page but not the whole site, which was almost perfect. Instead of .post-7606 i gave the category shortcode an ID, like this
<div id=”mytest1″>[product_categories number=”8″]</div>
and then wrote the custom css like this:
#mytest1 .woocommerce .products li
{
overflow: hidden;
}
#mytest1 .woocommerce .products li:hover img{
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}and that worked perfect for just the category thumbnails. Thanks again Laranz, your support is awesome!
This reply has been marked as private.Hi Laranz, that one effects all products as well. So it seems to override the hover on the product thumbnails that normally makes them slide up and show the second image. but i’m hoping there’s a way to put a separate hover action that just effects the category thumbnails. Thanks again!
Hi Laranz, thanks for your help. That worked but it’s affected all product thumbnails. Is there a way to just have it do that hover only on that category section? i tried:
.woocommerce ul.products li.product-category .product:hover img {
but that didn’t work. Thanks again!
-