diff options
author | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-24 13:48:53 +0000 |
---|---|---|
committer | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-24 13:48:53 +0000 |
commit | d7c840968eb53b5923cf3ba2bdf03328a91869c7 (patch) | |
tree | 04586c90b5b2dc2a155c487556e5d2ff48c420a8 | |
parent | c86cfba9e212a37eee720d1e82ec8960d5cb8276 (diff) |
Fix logo disappearing
Signed-off-by: Josh Angell <josh@supercooldesign.co.uk>
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index fd43bbf05..b22eaf472 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -28,7 +28,7 @@ body { padding: 0em; width: 60em; position: relative; - z-index:0; + z-index:1; } //z-index stack order gets reset to 0 in ie6/7 if you position anything, @@ -85,6 +85,9 @@ body { height: auto; background: none; border-top: 0px; + .container { + position: static;//reset position so z-index resets + } } #site-logo { top: 0.9em; @@ -211,6 +214,7 @@ body.mappage { } #site-logo{ position: fixed; + z-index:10000; } } @@ -736,7 +740,7 @@ body.frontpage { /* MEDIA QUERIES */ -@media only screen and (min-width: 48em) and (max-width: 64em) { +@media only screen and (min-width: 48em) and (max-width: 61em) { .container { width: 100%; } |