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
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
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
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.
> 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
_