- Posts: 89
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Hm, you would like to have it bigger?I also need to have the default Map Marker to display twice as big.
@media (max-width: XXXpx) { .leaflet-marker-icon { width:XXXpx !important; height:XXXpx !important; } }
Learning a lot from here, thank you very much.
<style type="text/css"> @media only screen and (max-width: 480px) { .map-item { padding-top: 0; } .map-item .geoname_search .input-group > * { display: block; width: 100%; } .map-item .geoname_search .input-group-addon:first-child { display: none; } .map-item .geoname_search .input-group-addon:last-child { float: none; padding: 9px 12px 3px 12px; border: 1px solid #CCCCCC; border-radius: 4px; white-space: normal; padding: 9px 12px 3px 12px; } .map-item .geoname_search .input-group input[type="text"] { display: block; float: none; border-radius: 4px; } .map-item .coordinate-item { display: block; margin: 0 0 5px 0; } } </style>