Posted by Martin Jay on 06/23/06 15:53
In message <1151076374.406129.198110@u72g2000cwu.googlegroups.com>,
floorvan@gmail.com writes
>I created my first site in CSS: www.rinchenkhandro.com (the first page
>is in Flash).
>
>I'm having a problem with IE on pc thoug..the navigation is stacked,
>instead of lining up horizontally.
>
>I'm not sure what I've done wrong here...
You were unbelievably close. :)
The float needs to be applied to the <li> element in the navigation
menu. And you also need to give it a width:
#nav li{
float: right;
width: 83px;
}
--
Martin Jay
Phone/SMS: +44 7740 191877
Fax: +44 870 915 2124
[Back to original message]
|