From 5faf656630afc13794b283a27a6a57dcf2b8ab0a Mon Sep 17 00:00:00 2001 From: Ismael Carnales Date: Thu, 12 Nov 2009 22:11:50 -0200 Subject: 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 Signed-off-by: Dan McGee --- media/arch.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'media/arch.css') 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; -- cgit v1.2.3-24-g4f1b