• Resolved piratesjv81

    (@piratesjv81)


    I love this plugin but hoping to get a little help improving the search results below the map. The default results includes single column results on the left side with about 4/5 of the screen left with empty space. Is there a way to alter the search results to allow for more columns?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    There is no build in way to do so, but if you’re comfortable with CSS then you can set the LI elements to 50% width or so.

    You can try to add this code to the style(s).css inside your active theme folder, but you will likely have to adjust the width / height value a bit to make it work with your theme.

    
    #wpsl-wrap #wpsl-result-list li {
       float: left;
       width: 50%;
       height: 300px;
       padding: 5px !important;
    }
    
    @media (max-width: 825px) {
      #wpsl-wrap #wpsl-result-list li {
        float: none;
        width: 100%;
        height: auto;
        padding: auto !important;
      }
    }
    
    Thread Starter piratesjv81

    (@piratesjv81)

    That worked perfectly thanks for the quick response!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Format Below Map Search Results to 2 or 3 Columns’ is closed to new replies.