summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-11-12 22:11:50 -0200
committerDan McGee <dan@archlinux.org>2010-01-30 14:42:38 -0600
commit5faf656630afc13794b283a27a6a57dcf2b8ab0a (patch)
tree66535edfe1da24eed22d4a87d6b583da878aee97 /media
parent8ffc8fc63d32162ad9d0f2dd1cf3cf8d9a37f0d0 (diff)
downloadarchweb-5faf656630afc13794b283a27a6a57dcf2b8ab0a.tar.gz
archweb-5faf656630afc13794b283a27a6a57dcf2b8ab0a.zip
Modify menu items order to be from top to bottom
The menu was rendered bottom to top in the html because the elements were floated to the right. This caused text browsers visitors (no CSS rendering) to see the menu backwards. I've modified the menu order and made the items float to the left so the menu is correctly rendered in text browsers. Signed-off-by: Ismael Carnales <icarnales@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'media')
-rw-r--r--media/arch.css3
1 files changed, 1 insertions, 2 deletions
diff --git a/media/arch.css b/media/arch.css
index 92c2b938..66f2ded5 100644
--- a/media/arch.css
+++ b/media/arch.css
@@ -18,7 +18,6 @@ body {
position: absolute;
top: 123px;
right: 30px;
- width: 600px;
background: #333;
}
#dev_nav {
@@ -35,7 +34,7 @@ body {
}
#main_nav ul li, #dev_nav ul li {
display: block;
- float: right;
+ float: left;
margin: 0 3px;
padding: 0;
text-align: center;