hamster88 Posted October 10, 2013 Share Posted October 10, 2013 (edited) Hi I have used vekia's prducts grid view from here http://mypresta.eu/en/art/developer/prestashop-products-list-grid-view.html#disqus_thread I want to change it so its similar to the featured products so that the images are just links to the product, so there is no hover effect anymore. http://www.sophielam.co.uk/index.php?id_category=7&controller=category any help much appreciated. Edited October 10, 2013 by hamster88 (see edit history) Link to comment Share on other sites More sharing options...
anishjmc Posted October 10, 2013 Share Posted October 10, 2013 Hi , There is an easy way to achieve this. Open product_list.css of your theme in css directory add below code .poverlay {display:none !important} After changing, remember to force compile. Link to comment Share on other sites More sharing options...
vekia Posted October 10, 2013 Share Posted October 10, 2013 that's correct, just change the display:block; to display:none!important; exactly as anishjmc suggested #product_list .poverlay { top: 0px; left: 0px; position: absolute; display: block; width: 100%; height: 100%; visibility: hidden; z-index: 2; background: rgba(0,0,0,0.7); } Link to comment Share on other sites More sharing options...
hamster88 Posted October 10, 2013 Author Share Posted October 10, 2013 wow that was simple, genius. thanks a million. does that work for other thigns too like text, links ? thanks Link to comment Share on other sites More sharing options...
anishjmc Posted October 10, 2013 Share Posted October 10, 2013 Yes if you want to get rid of something or hide something, just find the exact css file and class then add the code {display:none !important} along with the class name. 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