I would like to hide the maps in both the Megafilter category page: http://www.inoltrepo.com/immo/index.php/appartements#sort=position&sortdir=desc
and Mega filter item page: http://www.inoltrepo.com/immo/index.php/appartements/appartements-hidden/55-appartement-kaysersberg
I had used the code below, which does the job. But like this the map in Contact page won't show up either. But there I would like to appear. So the question is: How to hide maps on Megafilter pages, without hiding it on the Contact page? Thank you!
.map-container { display: none; } .leaflet-container { display: none; }
Hi 1omegazip
You can use this custom CSS instead:
.com_jamegafilter .map-container, .item-property .article-sidebar-box .map-container { display: none; }
It will not affect the map on Contact page.
Thank you saguaros !