Hi Jim, On Tue, 17 Aug 2004 18:35:01 -0700, Jim Barricks <[EMAIL PROTECTED]> wrote: > http://www.barricksinsurance.com/button.html . > It shows up fine with 4 rows across and 4 rows down on IE but it shows 5 > rows across on Firefox. > Has anybody any idea what is going wrong here Please?
You are absolutely correct - IE is displaying it wrong. You've set the width of the UL to 80% of its parent. You've set the width of LI to 20% of its parent. So, the UL is 4/5 of BODY and LI is 1/5 of UL - therefore you get 5 LIs to a line. What can you do? If you only want four LIs to a line, set their width to 25%, else add "clear:left;" to the UL. --ben ****************************************************** The discussion list for http://webstandardsgroup.org/ Proud presenters of Web Essentials 04 http://we04.com/ Web standards, accessibility, inspiration, knowledge To be held in Sydney, September 30 and October 1, 2004 See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
