*

Redis

  • **
  • 27 posts
Categories not scrolling in filters
« on: June 11, 2024, 01:17:30 AM »
Categories are not scrolling in filters area. Cleaned cache several time but still not working.
https://prnt.sc/9L-G0gEYHC8g

in demo working well, but on my domain scroll not working.

*

MB Themes

Re: Categories not scrolling in filters
« Reply #1 on: June 11, 2024, 09:22:02 AM »
Could not reproduce.
Please share your url.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Redis

  • **
  • 27 posts
Re: Categories not scrolling in filters
« Reply #2 on: June 11, 2024, 10:13:01 AM »
found the problem.

https://prnt.sc/NiiGeDnnD9pE

from this :

Code: [Select]
.cat-box .cat-one {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 60px;
    background: #fff;
    display: none;
    padding: 14px 10px;
    overflow-y: auto;
}


i changed to this:

Code: [Select]
.cat-box .cat-one {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 60px;
    background: #fff;
    display: none;
    padding: 14px 10px;
    overflow-y: auto !important;
}

*

MB Themes

Re: Categories not scrolling in filters
« Reply #3 on: June 11, 2024, 02:04:52 PM »
Interesting, maybe you use jQuery 1.0? (Settings > General)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots