diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 10:15:44 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 12:09:36 +0100 |
commit | f43d57d5ba491b32bafcfdbdd314dbce6d317dbb (patch) | |
tree | 3d1c8c2607655d75bf163d373040680600b3f1ed | |
parent | 8d950f8feabd6aea7c48d5ce059046ac7c182bf8 (diff) |
Fix unecessary horizontal scrolling in layout
-rw-r--r-- | public/stylesheets/theme.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/stylesheets/theme.css b/public/stylesheets/theme.css index b9904feee..83899563f 100644 --- a/public/stylesheets/theme.css +++ b/public/stylesheets/theme.css @@ -135,7 +135,8 @@ div.lang { #topnav { background: transparent; top: 120px; - left: 115px; + margin-left: 115px; + width: auto; font-family:'DeliciousRoman', Arial, sans-serif; font-size: 18px; } |