diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-08-12 13:18:26 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-08-12 13:18:26 +0100 |
commit | d9da93465fb11dd61eed9a80bb5227a180a94e29 (patch) | |
tree | 47402fec4c39390a3da4e5ae4fa5f8c14c9daa46 | |
parent | efd2b56c6232517984bea470806d00820f4e9e9a (diff) |
Increase height of oxfordshire map
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 5 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/position_map.js | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index 05b075ac5..5a5b442fd 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -102,7 +102,10 @@ body.twothirdswidthpage { .full-width { width: 412px; } .shadow-wrap { width: 412px; } -#map_box { width: 956px; } +#map_box { + width: 956px; + height: 600px; +} .content { width: 380px; } body.fullwidthpage .content { width: auto; } diff --git a/web/cobrands/oxfordshire/position_map.js b/web/cobrands/oxfordshire/position_map.js index 586b6822c..eb508b031 100644 --- a/web/cobrands/oxfordshire/position_map.js +++ b/web/cobrands/oxfordshire/position_map.js @@ -14,7 +14,7 @@ function position_map_box() { } var map_box_width = "956px"; - var map_box_height = "464px"; + var map_box_height = "600px"; // Do the same as CSS (in case resized from mobile). $('#map_box').prependTo('.wrapper').css({ zIndex: 1, position: 'absolute', |