Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter Patrick Horemans

    (@winock)

    I have found something by myself….
    with this hack and adding the overflow

    .mapsmarker:after {
    	clear: left;
    	content: "";
    	display: block;
    	height: 0;
    	overflow: hidden;
    	visibility: hidden;
    	width: 100%;
    }
    .leaflet-container {
    	-webkit-box-sizing: border-box;
    	-moz-box-sizing:    border-box;
    	box-sizing:         border-box;
    	float: left;
    	width: 70%;
    }
    .lmm-listmarkers {
    	border-top: 1px solid #cccccc;
    	float: left;
    	width: 30% !important;
    	height: 480px;
            overflow: scroll;
    }
    .lmm-listmarkers table {
    	width: 100% !important;
    }

    Please, can someone help me.
    I put this Code in the style.css of my Theme i used and it works fine.
    But i need the list of markers under the map, not on the right side.
    How i must change the code to do that?
    Thanks.

    Thread Starter Patrick Horemans

    (@winock)

    See here is this a sollution what you search for?

    https://www.winock.eu/deutsch/karte-saalfelden/

    Yes, that is exactly what i want. How can i do that?

    Thread Starter Patrick Horemans

    (@winock)

    it is verry simple: in my case i have a theme where i can put custom css…
    i guess that if you do not have this you do it in your themme css file.

    i have added the following code:

    .lmm-listmarkers {
    height: 270px;
    overflow: auto;
    }

    where the height is the height of the box, more height are more markers….

    let me know if its working by you

    Where do i put this Code?
    I have do it right now:

    .mapsmarker:after {
    clear: left;
    content: “”;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 100%;
    }
    .leaflet-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 70%;
    }

    .lmm-listmarkers {
    height: 270px;
    overflow: auto;
    }

    }
    .lmm-listmarkers table {
    width: 100% !important;
    }

    Thread Starter Patrick Horemans

    (@winock)

    do al the other code away just only

    .lmm-listmarkers {
    height: 270px;
    overflow: auto;
    }

    what is the aadress of your site?

    Okay, i do what you say an it worked!!!
    Fine. Thank you!

    Thread Starter Patrick Horemans

    (@winock)

    i did see it, glad to help

    Thank you for your help.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Need a hack urgently for pagination’ is closed to new replies.