Re: [WSG] I.E Navigation help

2009-11-18 Thread dwain
On Wed, Nov 18, 2009 at 4:24 AM, Jerome Carpen enqu...@wombatmedia.com.auwrote: hey guys, Have got the following navigation to work in firefox, safari, chrome, opera and the such, but not IE. In IE, the links do not go inline but scale left to right in a step manner. Any ideas of what

RE: [WSG] I.E Navigation help

2009-11-18 Thread Foskett, Mike
Sounds to me like you’ve added display:inline to the li but left out float:left. Mike From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of dwain Sent: 18 November 2009 10:52 To: wsg@webstandardsgroup.org Subject: Re: [WSG] I.E Navigation help On Wed, Nov 18

Re: [WSG] I.E Navigation help

2009-11-18 Thread Lesley Lutomski
Hi Jerome, I had the same problem some time ago - so long ago, I'm no longer sure exactly what actually fixed it. However, I think the answer, or part of it, involves setting display:inline on the li, not the a and then setting your padding, etc. on the a. I also found I had to set a line

Re: [WSG] I.E Navigation help

2009-11-18 Thread Stuart Foulstone
What you're trying to do is alter the display of the native list structure - not the links. That is you want to display the list-items inline and floated left. ( e.g. .navlist li { display: inline; float: left; list-style-type: none; } On Wed, November 18, 2009

Re: [WSG] I.E Navigation help

2009-11-18 Thread Enquiry @ Wombat Media
I've obviously missed a vital part of the code and that is the navlist li part. Thanks all guys. Sent from my iPhone On 19/11/2009, at 11:18 AM, Stuart Foulstone stu...@bigeasyweb.co.uk wrote: What you're trying to do is alter the display of the native list structure - not the links.