diff options
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/fixmystreet.com/header_extra.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/web/fixmystreet.com/header_extra.html b/templates/web/fixmystreet.com/header_extra.html index f65121445..e05bc31d2 100644 --- a/templates/web/fixmystreet.com/header_extra.html +++ b/templates/web/fixmystreet.com/header_extra.html @@ -9,7 +9,9 @@ var variation = cxApi.chooseVariation(), docElement = document.documentElement, className = docElement.className; -docElement.className = className + ' variant' + variation; +if (!/about\/council/.test(location.pathname)) { + docElement.className = className + ' variant' + variation; +} </script> <style> html .variant1 { display: none !important; } |