diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-04-04 17:00:56 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2018-04-04 17:00:56 +0100 |
commit | 53258b6ae50b8e2fbd429076590df3f3c97749a2 (patch) | |
tree | 326421f1c34121a3a6b1aef6a40b26491a577a89 | |
parent | d84436979176d1110178fa42bcbe24113b79fd74 (diff) |
Prevent green banner (#2032) appearing over mobile map
Fixes #2060.
-rw-r--r-- | templates/web/fixmystreet.com/header_extra.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/web/fixmystreet.com/header_extra.html b/templates/web/fixmystreet.com/header_extra.html index 146c3f79e..3a7640606 100644 --- a/templates/web/fixmystreet.com/header_extra.html +++ b/templates/web/fixmystreet.com/header_extra.html @@ -14,6 +14,7 @@ html .banner-position-variant-1 { display: none !important; } html.banner-position-variant-1 .banner-position-variant-0 { display: none !important; } html.banner-position-variant-1 .banner-position-variant-1 { display: block !important; } + html.map-fullscreen .banner-position-variant-1 { display: none !important; } html.banner-position-variant-1 #side .big-green-banner ~ section.full-width { margin-top: -1em; } </style> [% END %] |