Jump to content

Hover effect with description


Podpora

Recommended Posts

Easy, edit this file:

/themes/default-bootstrap/css/product_list.css

Add this code at the end of file:

ul.product_list.grid > li.hovered .product-container .product-desc {
    display: block;
}
If you can't see the changes, clear cache from the back office and browser.
Link to comment
Share on other sites

 

Easy, edit this file:

/themes/default-bootstrap/css/product_list.css

Add this code at the end of file:

ul.product_list.grid > li.hovered .product-container .product-desc {
    display: block;
}
If you can't see the changes, clear cache from the back office and browser.

 

 

Sry mate, but i didnt see anything

Link to comment
Share on other sites

Because you have a custom theme and my code was for default theme, I saw you already have added the code in the css, just need add display: none; in the rule ul.product_list.grid > li .product-container .product-desc around the line 166
 
Change this:
 

ul.product_list.grid > li .product-container .product-desc {
    margin-bottom: 6px;
}

 
To this:
 

ul.product_list.grid > li .product-container .product-desc {
    margin-bottom: 6px;
    display: none;
}
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...