[css-d] IE Problem (with valid code)

2005-09-07 Thread Jon Stephenson
I have removed everything extra from the code it will now validate and it still having a problem in IE here is the link to the new test file. I still have an extra space under each list item in my nav now the only thing on the test page is the nav I have removed all other elements.

Re: [css-d] IE Problem (with valid code)

2005-09-07 Thread Schalk
Jon Give this a try: #leftContainer ul { margin:0; padding:0; list-style:none; } #leftContainer ul li { text-align:right; margin-left: -28px margin-right: 6px; } Jon Stephenson wrote: I have removed everything extra from the code it will now validate and it still having a

RE: [css-d] IE Problem (with valid code)

2005-09-07 Thread Pringle, Ron
I have removed everything extra from the code it will now validate and it still having a problem in IE here is the link to the new test file. I still have an extra space under each list item in my nav now the only thing on the test page is the nav I have removed all other elements.

Re: [css-d] IE Problem (with valid code)

2005-09-07 Thread Jon Stephenson
Taking out the line breaks between the list items worked but this code is going to be generated by a cms and it has to put each one on its own line is there any other way to fix it? On 9/7/05 1:14 PM, Pringle, Ron [EMAIL PROTECTED] wrote: I have removed everything extra from the code it will

RE: [css-d] IE Problem (with valid code)

2005-09-07 Thread Pringle, Ron
Taking out the line breaks between the list items worked but this code is going to be generated by a cms and it has to put each one on its own line is there any other way to fix it? add display:inline; to your #leftContainer li and move your text-align:right; to #leftContainer li a.