Title: Map scrolling
Last modified: April 3, 2019

---

# Map scrolling

 *  Resolved [clickharder](https://wordpress.org/support/users/clickharder/)
 * (@clickharder)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/map-scrolling-2/)
 * On the listing results page, the map doesn’t become fixed while scrolling through
   the available listings. The whole page continues to scroll so I am left with 
   no content on the left side of the screen and a thin line of listing on the right
   side.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmap-scrolling-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [iHomefinder, Inc.](https://wordpress.org/support/users/ihomefinder/)
 * (@ihomefinder)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/map-scrolling-2/#post-11431398)
 * Hello,
 * Thank you for reaching out. I was unable to replicate the issue on the example
   page you provided. However, this sounds like a common issue we have experienced
   with certain themes. I have included a script below you can add to the plugins
   CSS override control. In WordPress go to Optima Express > Configuration and add
   the script below outside of the existing style tags.
 *     ```
       <script type="text/javascript">
           window.onload = function() {
               let eurekaContainer = document.getElementsByTagName("ihf-search")[0];
               if (eurekaContainer != undefined) {
                   overflow(eurekaContainer);
               }
               function overflow(element) {
                   while(element) {
                       var style = window.getComputedStyle(element)
                       if((style.overflowY == 'hidden' && style.overflowX == 'hidden') || (style.overflowY == 'auto' && style.overflowX == 'auto')) {
                           element.setAttribute('style', "overflow: visible;")
                       }
                       if(style.overflowY == 'hidden' || style.overflowY == 'auto') {
                           element.setAttribute('style', "overflow-y: visible;")
                       }
                       if((style.overflowX == 'hidden' || style.overflowX == 'auto') && (element.tagName != 'html' || element.tagName != 'body')) {
                           element.setAttribute('style', "overflow-x: visible;")
                       }
                       element = element.parentElement;
                   }
               }
           }
       </script>
       ```
   
 * I hope that helps. Please feel free to email us directly at [support@ihomefinder.com](https://wordpress.org/support/topic/map-scrolling-2/support@ihomefinder.com?output_format=md)
 * Best,
 * Support
 *  Thread Starter [clickharder](https://wordpress.org/support/users/clickharder/)
 * (@clickharder)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/map-scrolling-2/#post-11432816)
 * Yes, that did the trick. I was given that code via email and implemented it already
   which is why you couldn’t reproduce the issue. 😉

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Map scrolling’ is closed to new replies.

 * ![](https://ps.w.org/optima-express/assets/icon-256x256.png?rev=2288316)
 * [Optima Express IDX](https://wordpress.org/plugins/optima-express/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/optima-express/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/optima-express/)
 * [Active Topics](https://wordpress.org/support/plugin/optima-express/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/optima-express/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/optima-express/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [clickharder](https://wordpress.org/support/users/clickharder/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/map-scrolling-2/#post-11432816)
 * Status: resolved