Close

Long list of manufacturers

sumit7034
8 years ago
#9738 Quote
Avatar
  • 7
Did you found any solution?

Is below solution working fine at your end and giving scrolling in filters
.attributeFilterPanel7Spikes ul
{
max-height: 300px;
overflow: auto;
}
iliyan.tanev
8 years ago
#9739 Quote
Avatar
  • Moderator
  • 347
Hi,

Yes, it does when the panels have enough options to stretch more than 300 px in height. Maybe your css is cached. Can you make sure that the styling is loaded for your site by expecting your css with Chrome Developer Tools ?
Regards,
Iliyan Tanev
Nop-Templates Dev Team
sumit7034
8 years ago
#9768 Quote
Avatar
  • 7
Now I got it I am getting scrolling on Product attribute filters only

But not getting on manufacturers, vendors and Specification Attribute filter.

Please suggest the change for getting filter on them also.
iliyan.tanev
8 years ago
#9772 Quote
Avatar
  • Moderator
  • 347
Hi,

Maybe in your case will be easier to set the scroll to all the panels, like this:

.filter-block ul
{
  max-height: 300px;
  overflow: auto;
}

If you want only specific panels to get the scrolling you can inspect the page source of some category page which have all the different kinds of filters and get the specific selectors from there.

Hope this helps!
Regards,
Iliyan Tanev
Nop-Templates Dev Team
sumit7034
8 years ago
#9773 Quote
Avatar
  • 7
Thanks now I understand Now I have added below in css
.attributeFilterPanel7Spikes ul
{
max-height: 300px;
overflow: auto;
}
.manufacturerFilterPanel7Spikes ul
{
max-height: 400px;
overflow: auto;
}
.specificationFilterPanel7Spikes ul
{
max-height: 300px;
overflow: auto;
}


Also let me know is there a way of searching in filters like in link below on filter they are having textbox to search
http://www.centralbooksonline.com/school-books/cbse/nursery.html?p=2
iliyan.tanev
8 years ago
#9780 Quote
Avatar
  • Moderator
  • 347
Hi,

Currently this is not supported. 
However I encourage you to suggest this to our UserVoice portal.
Regards,
Iliyan Tanev
Nop-Templates Dev Team