WebShark
-
Posts
43 -
Joined
-
Last visited
Community Answers
-
WebShark's post in Filter box covers results / no results was marked as the answer
I solved this! I changed the 'noScrollToResults' to false in stead of true, and I changed the 'top' procent to minus 10, this can be whatever suits your need 🙂
      sticky: {// if enabled: true - trying enable sticky position of Filter to be seen on scroll
        enabled: true,
        top: '-10%'
      },
      noScrollToResults: false,
-
WebShark's post in Change div order with css was marked as the answer
Problem solved:
.custom-maps-info-window .custom-maps-info-wrapper { display: grid !important; } .info-marker-title, .info-marker-image, .info-marker-cats, .info-marker-descr { grid-row: auto; / } .info-marker-title { order: 1 !important; / } .info-marker-image { order: 3 !important; / } .info-marker-cats { order: 2 !important; / } .info-marker-descr { order: 4 !important; / } Â
-
WebShark's post in Universal Filter covers results and no results was marked as the answer
Just wanted to add that solution to problem 1 is to add code:Â noScrollToResults: true,
Â