cnpark70 Posted May 29, 2015 Share Posted May 29, 2015 After I changed the header position from relative to fixed in global.css, product grid hover effect (when mouse over shadows shows up and so on) started not working. if I change the header position from fixed back to relative, product grid hover effect works fine. I need to have header fixed in position and also want to keep hover effect for product grid. Thank you in advance for your help. http://www.kocamoca.com/ Link to comment Share on other sites More sharing options...
AdrianaM Posted June 1, 2015 Share Posted June 1, 2015 I have the same problem ... maybe somebody know how to fix it? Link to comment Share on other sites More sharing options...
cnpark70 Posted June 1, 2015 Author Share Posted June 1, 2015 Hi Adriana, I cannot find any resolved solution relating to our issue. But I really want to keep fixed header position appearance. Link to comment Share on other sites More sharing options...
vekia Posted June 2, 2015 Share Posted June 2, 2015 hello both of you have fixed header section ? Link to comment Share on other sites More sharing options...
cnpark70 Posted June 3, 2015 Author Share Posted June 3, 2015 yes i did fixed the header position. Link to comment Share on other sites More sharing options...
vekia Posted June 3, 2015 Share Posted June 3, 2015 your button-container class is visible even without hover have you tried to add display:none for it? after that it will be necessary to add simple js snippet: $(".product_list li").hover(function(){ $(".product_list li .button-container").show(); },function(){ $(".product_list li .button-container").hide(); }); Link to comment Share on other sites More sharing options...
cnpark70 Posted June 3, 2015 Author Share Posted June 3, 2015 (edited) in which .css file should I change it to display:none? I am beginner and have not much idea where to find. And where should I add below js snippet $(".product_list li").hover(function(){$(".product_list li .button-container").show();},function(){$(".product_list li .button-container").hide();}); Thanks Edited June 3, 2015 by cnpark70 (see edit history) Link to comment Share on other sites More sharing options...
bsmani Posted December 29, 2015 Share Posted December 29, 2015 Same problem here... mouse over effect is not working properly in my site(like Quick view). And also Add to cart n more button stands permanently below the products.guys tell me to fix the problem.i want to display the products that looks like this url: http://demo.prestashop.com/en/?view=front My URL is: www.karikkadai.com Link to comment Share on other sites More sharing options...
wilebaldo Posted March 1, 2018 Share Posted March 1, 2018 I had this same problem I change the width to my page from a fix to 75%, but thanks to Vekia I can solved, the solution he said is not working but help me to understand how to fix it and I will give you if any one else have the same problem. In the file global.js find this: "function blockHover(status) { var screenLg = $('body').find('.container').width() == 1170;" In my case the lane 183, and just need to change the operator "==" to ">=" and in this way any page wider than 1170 will hide the Button of product grid view and show with the hover mouse. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now