summaryrefslogtreecommitdiffstats
path: root/media/arch.css
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-11-13 01:11:50 +0100
committerDan McGee <dan@archlinux.org>2010-01-30 21:42:38 +0100
commit5faf656630afc13794b283a27a6a57dcf2b8ab0a (patch)
tree66535edfe1da24eed22d4a87d6b583da878aee97 /media/arch.css
parent8ffc8fc63d32162ad9d0f2dd1cf3cf8d9a37f0d0 (diff)
downloadarchweb-5faf656630afc13794b283a27a6a57dcf2b8ab0a.tar.gz
archweb-5faf656630afc13794b283a27a6a57dcf2b8ab0a.tar.xz
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/arch.css')
-rw-r--r--media/arch.css3
1 files changed, 1 insertions, 2 deletions
diff --git a/media/arch.css b/media/arch.css
index 92c2b93..66f2ded 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;