aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@fury.ukcod.org.uk>2011-04-01 09:51:54 +0100
committerMatthew Somerville <matthew@fury.ukcod.org.uk>2011-04-01 09:51:54 +0100
commit862835b362268f468f919f13ff3453a560e3d2a6 (patch)
tree362ebcf37aa841bc8a91215cd8821a2b72b3ad92
parentefe4dc0126acceacb75f6c25852860a78e5fe98e (diff)
Add clear to fix Southampton FF issue.
-rwxr-xr-xweb/alert.cgi2
-rw-r--r--web/cobrands/southampton/style.css2
-rwxr-xr-xweb/index.cgi2
3 files changed, 3 insertions, 3 deletions
diff --git a/web/alert.cgi b/web/alert.cgi
index fd30dbf4e..208dc756b 100755
--- a/web/alert.cgi
+++ b/web/alert.cgi
@@ -364,7 +364,7 @@ sub alert_list_options {
my $rss_url = Cobrand::url($cobrand, $url, $q);
$out .= 'value="' . $id . '"> <label for="' . $id . '">' . $text
. '</label> <a href="' . $rss_url . '"><img src="/i/feed.png" width="16" height="16"
-title="' . sprintf(_('RSS feed of %s'), $text) . '" alt="' . _('RSS feed') . '" border="0"></a>';
+title="' . sprintf(_('RSS feed of %s'), $text) . '" alt="' . _('RSS feed') . '" border="0"></a></li>';
}
return $out;
}
diff --git a/web/cobrands/southampton/style.css b/web/cobrands/southampton/style.css
index 400859102..cd4c0f490 100644
--- a/web/cobrands/southampton/style.css
+++ b/web/cobrands/southampton/style.css
@@ -52,7 +52,7 @@ ul#contacts li a {font-size:1.2em; padding:0 8px 0 10px; font-weight:400;}
/* ******* Start of Left Menu Bar ******* */
-#menuBar {width:200px; height:auto; float:left; margin:25px 0 0 43px; padding-bottom:25px;}
+#menuBar {width:200px; height:auto; float:left; margin:25px 0 0 43px; padding-bottom:25px; clear:both; }
ul#leftMenu {height:auto; width:199px; float:left; background:#e9eef7 url(bg-box.gif) no-repeat -1px 100%; padding:0 0 10px 0; margin:5px 0 0 0; overflow:hidden;}
ul#leftMenu li {list-style-type:none; width:199px; padding:0;}
diff --git a/web/index.cgi b/web/index.cgi
index eb7ae7f37..50a097ea8 100755
--- a/web/index.cgi
+++ b/web/index.cgi
@@ -197,7 +197,7 @@ EOF
$out .= $q->h2(_('Recently reported problems')) . ' <ul>' if @$probs;
foreach (@$probs) {
$out .= '<li><a href="/report/' . $_->{id} . '">'. ent($_->{title});
- $out .= '</a>';
+ $out .= '</a></li>';
}
$out .= '</ul>' if @$probs;
$out .= '</div>';