• Hello-

    Is there a way to change the height of #wpsl-stores, #wpsl-direction-details, #wpsl-gmap in mobile view? I see that it is set inline with an !important. I’d like to change it on mobile.

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

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

    (@tijmensmit)

    You can try to make them more specific and only make them work for mobile devices with media queries.

    For example this code.

    Try and place it in the style(s).css inside your active theme folder.

    
    @media (max-width: 675px) {
       #wpsl-wrap #wpsl-stores {
           height: 700px !important;
       }
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Change height for store listing in mobile view’ is closed to new replies.