Re: [css-d] Problem with lists in IE

2005-08-01 Thread Schalk Neethling
Michelle If all you want is a normal displaying list and merely changing the padding and list-style. You can safely remove the display:block. Also I saw in your stylesheet that you have: #soclist { display: block; list-style: square; padding-left: 0; margin-left: 0; width: 400px; padding: .7em

Re: [css-d] Problem with lists in IE

2005-05-09 Thread Ingo Chao
Justin Reid schrieb: ... perhaps the list items are inheriting this property also, so try adding ul.left li { float: none; } Justin is right, but the floating is inherited from http://www.modelcup.co.za/mc/css/navigation.css there are two rules interfering: ul li { position: relative; } ... * html

Re: [css-d] Problem with lists in IE

2005-05-09 Thread Schalk Neethling
Justin No, applied the float:none to the li's but no change to the layout. Justin Reid wrote: In Firefox everything looks right but in IE the lists are completely jumbled up. Any ideas why this is happening? I see that you have ul.left { float: left; } perhaps the list items are inheriting

Re: [css-d] Problem with lists in IE

2005-05-09 Thread Schalk Neethling
Thanks Justin, I will give it a shot. Justin Reid wrote: In Firefox everything looks right but in IE the lists are completely jumbled up. Any ideas why this is happening? I see that you have ul.left { float: left; } perhaps the list items are inheriting this property also, so try adding ul.

Re: [css-d] Problem with lists in IE

2005-05-09 Thread Justin Reid
> In Firefox everything looks right but in IE the lists are completely jumbled > up. Any ideas why this is happening? I see that you have ul.left { float: left; } perhaps the list items are inheriting this property also, so try adding ul.left li { float: none; } Just a though -Justin _