diff --git a/themes/ndt2/assets/css/main.css b/themes/ndt2/assets/css/main.css index e03bdd96bb7..69a322eaed2 100644 --- a/themes/ndt2/assets/css/main.css +++ b/themes/ndt2/assets/css/main.css @@ -475,7 +475,6 @@ html, body { #map .leaflet-popup-content { color: #222; width: 400px; - height: 200px; line-height: 1.4; font-weight: normal; font-size: 1em; diff --git a/themes/ndt2/layouts/index.html b/themes/ndt2/layouts/index.html index acfa2fa196c..a64001b7412 100644 --- a/themes/ndt2/layouts/index.html +++ b/themes/ndt2/layouts/index.html @@ -67,6 +67,18 @@ // If the venue has an external_url add it as a ink to the popup if (v.external_url) { popupText += `  `; + const domain = new URL(v.external_url).hostname; + popupText += ` +
+ + Site logo + + `; } // If the venue has a location, append it to the popup text if (v.location) {