diff options
-rw-r--r-- | themes/default/css/fix-ie.css | 14 | ||||
-rw-r--r-- | themes/default/css/screen.css | 22 |
2 files changed, 28 insertions, 8 deletions
diff --git a/themes/default/css/fix-ie.css b/themes/default/css/fix-ie.css index c83af92f..ed5abcae 100644 --- a/themes/default/css/fix-ie.css +++ b/themes/default/css/fix-ie.css @@ -1,6 +1,7 @@ /** * Fix display in IE */ +#gHeader, #gSiteMenu, #gBreadcrumbs, #gAlbumGrid, @@ -9,6 +10,19 @@ zoom: 1; } +#gHeader #gLogo { + margin-top: 5px; + margin-bottom: 0; +} + +#gHeader #gSiteMenu { + margin-top: 28px; +} + +#gHeader #gQuickSearchForm { + margin-bottom: 0; +} + #gViewMenu a { width: 52px !important; } diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 2755fe22..2e0936e4 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -365,9 +365,10 @@ form p.gError { /* Layout containers ~~~~~~~~~~~~~~~~~~~~~ */ #gHeader { + background-color: #e8e8e8; border-bottom: 1px solid #fff; font-size: .8em; - margin-bottom: 20px; + padding: 1em 20px 0 20px; } #gContent { @@ -384,6 +385,7 @@ form p.gError { } #gFooter { + background-color: #e8e8e8; border-top: 1px solid #ccc; font-size: .8em; margin-top: 20px; @@ -397,13 +399,14 @@ form p.gError { /* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #gHeader #gLogo { - margin: 5px 10px 10px 20px; + float: left; + margin: -4px 10px 0 0; } #gHeader #gQuickSearchForm { clear: right; float: right; - margin: 1em 20px 0 0; + margin: 1em 0; } #gHeader #gQuickSearchForm input[type='text'] { @@ -524,22 +527,21 @@ form p.gError { #gSiteMenu, #gBreadcrumbs, #gTagCloud ul { - font-size: 1.3em; + font-size: 1.2em; } /* Login menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #gHeader #gLoginMenu { float: right; - margin: 9px 20px 0 0; } /* Site Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #gSiteMenu { - border-bottom: 1px solid #ccc; - clear: none; - padding: 0 20px 0; + float: left; + margin-top: 20px; + padding: 0 20px 0 0; } #gSiteMenu ul { @@ -588,6 +590,10 @@ form p.gError { /* Breadcrumbs ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #gBreadcrumbs { + background-color: #fff; + border-top: 1px solid #ccc; + clear: both; + margin: 0 -20px; padding-left: 20px; } |