Reputation:
I have a problem with my eshop. There are a boxes with products and at that boxes is hover and JS onlick. It works fine, but only for boxes, which are visible on device-height. At boxes, for which you must scroll down it doesn't work. Why?
Thank you.
Upvotes: 1
Views: 50
Reputation: 1300
Little CSS trick will save your day! Here it is:
.inside {
height: auto !important;
}
Upvotes: 2