I've been trying to hide Latitude&Longitude, but without success.
I've been able with css to hide the whole pop-up with the following code:
.gmap-popup {display:none;}
but I'm not able to select correctly the latitude and longitude classes.
The following code will not work:
.gmap-popup latitude {
display:none;
}Why?
I even tried changing the paragraph color with this code:
.gmap-popup p {
color:#cc00;}What's wrong with my css selectors?
Comments
Comment #1
Mike Sances commentedI'm also trying to accomplish something similar. I'm creating a gmap view but want to exclude the longitude and latitude, but get an error message:
On my Drupal 4.7 sites, I am able to create views without longitude and latitude with no problem.
Comment #2
Mike Sances commentedduplicate post
Comment #3
Mike Sances commentedduplicate post
Comment #4
comargo commentedcorrect CSS code is
Please note, there is no space between '.gmap-popup' and '.latitude'
Comment #5
ultimikeAnother way to do it without CSS is to just create your own theme function:
In this example, I only output the title, comment count, and name. The latitude and longitude are still part of the view, just not displayed.
-mike
Comment #6
thechraveler commentedyes I am also curious why this addition from the 4.7 module?
Comment #7
rooby commentedDrupal 5 is no longer supported.
Also,
Support and feature requests are not critical. For more information see http://drupal.org/node/45111