diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/css/emptyhomes.css | 13 | ||||
-rwxr-xr-x | web/index.cgi | 6 |
2 files changed, 12 insertions, 7 deletions
diff --git a/web/css/emptyhomes.css b/web/css/emptyhomes.css index 0afca77a3..121242415 100644 --- a/web/css/emptyhomes.css +++ b/web/css/emptyhomes.css @@ -77,7 +77,7 @@ blockquote { font-size: 200%; font-weight: bold; margin: 0; - padding: 5px 0.5em; + padding: 5px 0; float: left; } @@ -102,6 +102,10 @@ blockquote { list-style-type: none; font-size: 83%; } +#navigation ul { + padding: 0; + margin: 0; +} #navigation li { display: inline; padding: 0; @@ -111,7 +115,7 @@ blockquote { #navigation a { display: -moz-inline-box; display: inline-block; - padding: 0.5em 1em; + padding: 0.5em 0.5em; } #navigation a:link, #navigation a:visited { color: #30517A; @@ -154,13 +158,14 @@ blockquote { #postcodeForm { background-color: #80AE7D; color: #000000; + font-size: 130%; } #front_stats div { background-color: #80AE7D; color: #000000; - /*padding: 0.5em 0; - width: 6em; */ + /*padding: 0.5em 0; */ + width: 9em; } #problem_form { diff --git a/web/index.cgi b/web/index.cgi index b8ef91cda..0201dd908 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.258 2009-07-10 15:17:29 matthew Exp $ +# $Id: index.cgi,v 1.259 2009-07-10 17:24:50 matthew Exp $ use strict; use Standard; @@ -408,7 +408,7 @@ Please <a href="/contact">let us know what went on</a> and we\'ll look into it.' $h{url} = $base . '/P/' . mySociety::AuthToken::store('problem', $id); dbh()->commit(); - $out = Page::send_email($q, $input{email}, $input{name}, _('problem'), %h); + $out = Page::send_email($q, $input{email}, $input{name}, 'problem', %h); } return $out; @@ -807,7 +807,7 @@ sub display_location { $out .= <<EOF; <p id="alert_links_area"> <a id="email_alert" rel="nofollow" href="$email_me_link">$email_me</a> - | <a href="/rss/$x,$y" id="rss_alert"><span>RSS feed</span> <img src="/i/feed.png" width="16" height="16" title="$rss_title" alt="$rss_alt" border="0" style="vertical-align: top"></a> + | <a href="/rss/$x,$y" id="rss_alert"><span>$rss_alt</span> <img src="/i/feed.png" width="16" height="16" title="$rss_title" alt="$rss_alt" border="0" style="vertical-align: top"></a> </p> EOF if (@errors) { |