diff options
-rw-r--r-- | web/cobrands/fixmystreet/_layout.scss | 10 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/_layout.scss b/web/cobrands/fixmystreet/_layout.scss index ae4e88e2f..57b26f42d 100644 --- a/web/cobrands/fixmystreet/_layout.scss +++ b/web/cobrands/fixmystreet/_layout.scss @@ -901,6 +901,16 @@ body.frontpage { } } } +.ie7 #front-main { + #postcodeForm { + div { + input#pc { + height:1.5em; + width:16em; + } + } + } +} #front-howto { border-right:1em solid #fff; diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index 55b2cd3e3..47f5da820 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -117,7 +117,7 @@ $(function(){ var map_height = $window.height() - o.top; $('#map_box').prependTo('.wrapper').css({ zIndex: 0, position: 'fixed', - right: 0, top: o.top, bottom: 0, + right: 0, top: o.top, bottom: 0, left: 'auto', width: $window.width() - o.left - $content.outerWidth(), height: map_height, margin: 0 |