diff options
-rwxr-xr-x | web/alert.cgi | 2 | ||||
-rw-r--r-- | web/cobrands/southampton/style.css | 2 | ||||
-rwxr-xr-x | web/index.cgi | 2 |
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>'; |