This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: ASP Filters Box Disappears

#32482
Ernest MarcinkoErnest Marcinko
Keymaster

Well, in CSS you either need to add them line by line like this:

div.asp_r.isotopic.asp_r_18,
div.asp_r.isotopic.asp_r_19,
div.asp_r.isotopic.asp_r_20 {
overflow: scroll;
height: 500px !important;
overflow-x: hidden !important;
}

..or use this variation to target all of them:

div.asp_r.isotopic {
	overflow: scroll;
	height: 500px !important;
	overflow-x: hidden !important;
}