View overlay not working anymore since last template update

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Mar 12, 2015 10:01 am
Reply with quote
Report this post
Hi,
since I did the last update (2015-03-11) of the template, the overlay (round "view") for categories and products in category view doesn't work anymore. If you check the code, you will see that it is there but there is no scrolling effect or anything else.

Please see: http://dmt25-linux.bits.co.at/j3/index.php/ergebnisse/test-1/ (category view)
and: http://dmt25-linux.bits.co.at/j3/index.php/shop/store-frontpage/test-1/sub-test-1

Is this a already known issue? Have found topics with "how to remove the overlay" only, but I need it the other direction ;-)

Thanks!
User avatar
Senior Boarder

GK User
Thu Mar 12, 2015 10:19 am
Reply with quote
Report this post
If you check the vm.css and change line 176 (.category-view .category .category-overlay > span > span) from:
Code: Select all
opacity: 0;

to
Code: Select all
opacity: 1;

you can see, that the overlay is there already, but no movement or anything on hover :(

ZOOM on product details works like a charm...
User avatar
Senior Boarder

teitbite
Wed Mar 18, 2015 2:08 pm
Reply with quote
Report this post
Hi

I think I've reported a similar issue and a fix for that is presented in one of my threads on this forum, but a permanent fix will be delivered in new weeks update.
User avatar
Moderator

GK User
Thu Mar 19, 2015 6:55 pm
Reply with quote
Report this post
Alright Sir! Could you post the link to this post (searched for it without luck). If not, no prob!

Thx and regards
User avatar
Senior Boarder

teitbite
Mon Mar 23, 2015 7:13 pm
Reply with quote
Report this post
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.category-view .category .category-overlay:hover > span > span,
.browse-view .product .product-overlay:hover > span > span,
.featured-view .product .product-overlay:hover > span > span,
.latest-view .product .product-overlay:hover > span > span,
.topten-view .product .product-overlay:hover > span > span,
.recent-view .product .product-overlay:hover > span > span,
.productDetails .main-image .product-overlay:hover > span > span {
margin-top: 50%;
opacity: 0;
}
User avatar
Moderator

GK User
Wed Mar 25, 2015 7:15 pm
Reply with quote
Report this post
Hi,

thanks for the code. You have to change
Code: Select all
opacity: 0;
}

to
Code: Select all
opacity: 1;
}

Ohterwise the overlay wont show up.

Regards
Steff
User avatar
Senior Boarder

teitbite
Thu Mar 26, 2015 6:49 pm
Reply with quote
Report this post
Hi

Yes, sorry for that. I copied the code added ":hover" and forgot to change opacity value ;/
User avatar
Moderator

GK User
Mon Jun 08, 2015 8:15 pm
Reply with quote
Report this post
Hi,

i have the same problem. Seems not to be fixed? Fresh installed J3 and Vm3 and no more overlay.
With your provided solution the circle shows up, but the white overlay on the product is still missing.
Can you please provide a solution that styles the products hover animation like it is in your demo.

Thank in advance
User avatar
Junior Boarder

teitbite
Thu Jun 11, 2015 12:43 pm
Reply with quote
Report this post
Hi

Try replace this class to this:

Code: Select all
.category-view .category .category-overlay:hover > span > span,
.browse-view .product .product-overlay:hover > span > span,
.featured-view .product .product-overlay:hover > span > span,
.latest-view .product .product-overlay:hover > span > span,
.topten-view .product .product-overlay:hover > span > span,
.recent-view .product .product-overlay:hover > span > span,
.productDetails .main-image .product-overlay:hover > span > span {
background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
margin-top: 50%;
opacity: 1;
}
User avatar
Moderator


cron