diff options
-rw-r--r-- | templates/web/bromley/footer.html | 2 | ||||
-rw-r--r-- | templates/web/bromley/header.html | 3 | ||||
-rw-r--r-- | web/cobrands/bromley/bromley.scss | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/templates/web/bromley/footer.html b/templates/web/bromley/footer.html index db77b8a29..aa606154b 100644 --- a/templates/web/bromley/footer.html +++ b/templates/web/bromley/footer.html @@ -40,6 +40,6 @@ </div> - </div> + </div></div> </body> </html> diff --git a/templates/web/bromley/header.html b/templates/web/bromley/header.html index 1e047c187..69627923a 100644 --- a/templates/web/bromley/header.html +++ b/templates/web/bromley/header.html @@ -26,7 +26,8 @@ </head> <body class="[% bodyclass | html IF bodyclass %]"> - <div id="bromley-wrapper"> + [%# ie_wrapper is to prevent a horizontal scrollbar in IE7, it appears (from Bromley site) %] + <div id="bromley-wrapper"><div id="bromley-ie_wrapper"> <div id="bromley-header" class="desk-only"> <ul class="header-nav"> diff --git a/web/cobrands/bromley/bromley.scss b/web/cobrands/bromley/bromley.scss index 3522229dc..02508c71d 100644 --- a/web/cobrands/bromley/bromley.scss +++ b/web/cobrands/bromley/bromley.scss @@ -53,11 +53,15 @@ body { color: #333; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; // Bromley IE specific CSS .ie6 { + div { zoom: 1; } + #bromley-wrapper { padding: 0; } + #bromley-footer { margin: 0; } #search input { padding: 8px 5px 2px; } #search input.button { padding: 0; width: 68px; line-height: 24px; } input.button { overflow: visible; width: 1%; } } .ie7 { + div { zoom: 1; } #search input { padding: 8px 5px 2px; } #search input.button { padding: 0; width: 68px; line-height: 24px; } input.button { overflow: visible; } |