Skip to content

Instantly share code, notes, and snippets.

Created March 13, 2015 15:56
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anonymous/268fd3023199a3611784 to your computer and use it in GitHub Desktop.
Überschrift und erste Spalte im Openlayers-Popup entfernen
table caption
{
display:none;
}
table.featureInfo > tbody > tr > th:first-child
{
display:none;
}
table.featureInfo > tbody > tr > td:first-child
{
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment