aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/cobrands/fixmystreet/fixmystreet.js4
-rw-r--r--web/cobrands/fixmystreet/layout.scss3
2 files changed, 6 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js
index 01f4b8774..155504010 100644
--- a/web/cobrands/fixmystreet/fixmystreet.js
+++ b/web/cobrands/fixmystreet/fixmystreet.js
@@ -96,6 +96,10 @@ $(function(){
}
}
+ if ($.browser.opera) {
+ $('html').addClass('opera');
+ }
+
$('html').removeClass('no-js').addClass('js');
$('#pc').focus();
diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss
index 12856ad2a..884050749 100644
--- a/web/cobrands/fixmystreet/layout.scss
+++ b/web/cobrands/fixmystreet/layout.scss
@@ -67,11 +67,12 @@ body {
}
//position absolute the menu as ie doesn't like display:table
-.ie6, .ie7 {
+.ie6, .ie7, .opera {
.nav-wrapper {
position: absolute;
top:0;
left:0;
+ width:100%;
.nav-wrapper-2 {
// position static as well so we fix lots of the z-index issues
position:static;