Great to hear you like the plugin 🙂
Removing the bottom part of the map is currently not possible, but it’s a feature that is planned for a feature release. I would then maybe show the thumbnail and the description in the tooltip on the map, or just show the location name and make it click able. Haven’t really worked out how to make it work, but it’s a feature that will come 🙂
Wow, thanks for that quick response! 🙂
It is definitely a feature that would make the plugin even better. Couldn’t I just change something in the code, so the bottom part just won’t show up? Take a look at my website http://www.strollingeast.com – I like having the map at the top, where people see my route, but they have to scroll down too much…
Are you comfortable editing php / css code?
Yes I am, if you tell me what to do :).
There are a few way to do this, the first should be the best one. Add this line to the css.style in your theme folder. This will target all maps on your site, if you only want to target the map on your homepage then just add .home in front of the line.
#nwm-destination-list {display:none !important;}
If that somehow doesn’t work, try these lines. This is more specifically written for your theme. I saw there was a <p>…</p> under the map, not sure where that comes from, but this line of code will hide it as well.
#container #nwm-destination-list,
#container #nwm-destination-list .nwm-back,
#container #nwm-destination-list .nwm-forward,
.nwm-wrap p {display:none;}
So this goes in the bottom of http://www.strollingeast.com/wp-content/themes/organic_adventure/style.css
Thanks a lot for helping me so quickly and thanks for your effort.
The first code lines worked well for me, but as you say, there is a <p>…</p> under the post (which comes from an excerpt plugin).
So I tried the second option, but it apparently doesn’t work? I inserted the code in the style.css, as you said. Did I do a mistake?
Try this, you can remove the .home if you want it to be applied to all maps.
.home #container .nwm-wrap p {display:none !important;}
If that also doesn’t work just send the ftp details to tijmen at nomadworldmap.com and I will have a look.
Thank you so much for your help, great support!! 🙂