diff options
-rwxr-xr-x | INSTALL.txt | 7 | ||||
-rw-r--r-- | public/stylesheets/main.css | 35 |
2 files changed, 14 insertions, 28 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index 6521cc1d6..a283f8916 100755 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -1,6 +1,6 @@ * Email: angie@mysociety.org; WWW: http://www.mysociety.org * - * $Id: INSTALL.txt,v 1.1 2008-07-10 15:25:00 angie Exp $ + * $Id: INSTALL.txt,v 1.2 2009-01-20 16:39:41 angie Exp $ * @@ -41,10 +41,9 @@ NOTES: su to postgres as a user. psql to get into command tool \l to list databases -create database foi encoding = 'SQL_ASCII'; + create database foi encoding = 'SQL_ASCII'; to change the password run -alter user postgres with password 'newpw'; -to import the data: + alter user postgres with password 'newpw'; 4: cd ../../mysociety diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index c0f4ba2cc..043c0cac9 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -218,13 +218,13 @@ body { position: relative; clear: both; - top: 100px; - padding: 0px; + top: 0px; + padding-top: 100px; margin: 0px auto 1.2em auto; width: 53em; /* = 800px at default size? so 1em = 16px*/ text-align: left; - overflow: auto; + overflow: visible; } /*------------------------------------------------ content */ @@ -373,6 +373,8 @@ dd { margin: 0.6em 0 2em 4em; width: 33em; } #request_sidebar .request_listing span.desc /* sidebar request list only */ { + float: left; + clear: both; width: 12.9em; background-image: url(../images/navimg/quote-open-small.png); background-repeat: no-repeat; @@ -382,7 +384,9 @@ dd { margin: 0.6em 0 2em 4em; width: 33em; } #request_sidebar span.bottomline { - width: auto; + float: left; + clear: both; + width: 100%; margin: 0 0 0.6em 0; background-image: none; padding: 0px; @@ -940,31 +944,14 @@ div.act_link img { { position: relative; clear: both; + float: left; width: 100%; - margin: 120px 0 0 0; + height: 2em; + margin: 0px 0 0px 0; padding: 0.5em 0 0.5em 0; font-size: 0.85em; - height: 2em; background-color: #F0F0F0; border-color: #993233; border-width: 3px 0 0 0; border-style: solid; } - -/*------------------------------------------------ interstitial advert */ - -#everypage { - background-color: #ffcc99; - border: solid 2px #ff6600; border-top: none; /* No top border, so looks like coming out of top */ - opacity: 0.97; - -moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; /* Rounded bottom corners */ - padding: 4px; - position: fixed; - width: 70%; left: 15%; /* So centered on screen, always visible */ - z-index: 200; /* So on top */ - max-height: 95%; overflow: auto; /* So on e.g. 800x600 scrollbar appears */ -} -#everypage h2, #everypage h3, #foi2009 h2, #foi2009 h3 { - margin: 0.5em 0; -} - |