PDA

View Full Version : Location Filter Styling 4.9.3



Spencer Culpin
April 26, 2024, 02:27 AM
Hi,

I've just updated my site to the new version 4.9.3. The site uses the Realty Rainbow theme. T Location filter has doesn't fit the allocated space when viewing on desktop screen and has a bar beneath the box to allow all content to be shown.

Can you please forward a fix to remove the bar so it shows as before the update?

4949

Many thanks

Rudi
April 26, 2024, 04:24 AM
Hello,

Go to plugins/mulriField/tplHeader.tpl

replace:


.gf-box .gf-container {
max-height: 250px;
overflow: hidden;
}


with:


.gf-box .gf-container {
max-height: 250px;
overflow: hidden !important;
}

Spencer Culpin
April 27, 2024, 10:47 AM
Thanks Rudi for your help.

That works great for removing the bottom line but also removes the option to scroll down the listings.

Can you please suggest an alternative fix?

4950

Many thanks

Rudi
April 29, 2024, 05:19 AM
Ok, use this code:



.gf-box .gf-container {
max-height: 250px;
overflow-x: hidden !important;
}

Spencer Culpin
April 29, 2024, 10:27 AM
Thanks Rudi,

That works great :-)