user4012714
user4012714

Reputation:

Hover doesn't work with bigger height

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

Answers (1)

atiquratik
atiquratik

Reputation: 1300

Little CSS trick will save your day! Here it is:

.inside {
  height: auto !important;
}

Upvotes: 2

Related Questions