Trouble with bulleted lists in IE

admin

Administrator
Staff member
I'm having some trouble and am about to pull my hair out. I have redone a site from tables and have used CSS. On the whole things have gone ok, I'm doing a final look over this weekend before it goes live. The problem I just can not seem to fix is that when I look at the page in IE6, the bullets for the <ul> just are not there. In Firefox, they are. I've done some reseach on the Holly Hack and some other things to try to fix it, but no luck. What am I missing?

The link to the page in question is here:
<!-- m --><a class="postlink" href="http://test.kennettlittledesign.com/MidlothianVa/vmvc.asp">http://test.kennettlittledesign.com/Mid ... a/vmvc.asp</a><!-- m -->

I have the page <ul> nested inside a <div> and then inside a class element to format that. As such..

<div id="content">
<div class="feature">

<ul>
<li></li>
</ul>

</div>
</div>

And those elements are contained in a external CSS. Can some one explain to a relative newcomer how to make this display in IE?

Thanks in advance.I think this float may be what's getting you. Try qualifying this wide open li style.

<!-- m --><a class="postlink" href="http://test.kennettlittledesign.com/MidlothianVa/nav-bar.css">http://test.kennettlittledesign.com/Mid ... av-bar.css</a><!-- m -->

li (line 16)
{
float: left;
position: relative;
width: 150px;
}
 
Back
Top