Click to See Complete Forum and Search --> : MX2004 - Problem displaying text/images beneath Nav Bar


CarolineHL
04-03-2006, 09:55 AM
Hi all

I have created a simple test site, but IE (v6.0) does not display full pages (all OK in Firefox). Designed in Dreamweaver MX2004 (v7.0).

Text and images below level of Nav Buttons is lost on all pages unless you hover over Home Page with other page open (i.e Services open and hover over Home Page).

Test site is at www.dwtest.countrysidelinks.co.uk.

Used a set template, and modified nav buttons.

Can anyone debug the problem for me - I'm at a loss, having searched through DW help, and on web.

Thanks

KDLA
04-03-2006, 01:53 PM
You've got too many ul's listed, in the wrong order

<div id="sectionLinks">
<ul>
<li><a href="index.html" class="style1">Home</a></li>
<li><a href="services.htm">Services</a>
<ul>
<ul>
<li><a href="contact.htm">How to start </a></li>
</ul>
<li><a href="about.htm">About</a></li>
</ul>
</li>
<li><a href="#">Links</a></li>
</ul>
</div>
</div>


It should look like:

<div id="sectionLinks">
<ul>
<li><a href="index.html" class="style1">Home</a></li>
<li><a href="services.htm">Services</a>
<ul>
<li><a href="contact.htm">How to start </a></li>
</ul>
</li>
<li><a href="about.htm">About</a></li>
<li><a href="#">Links</a></li>
</ul>
</div>
</div>

KDLA

CarolineHL
04-04-2006, 06:27 AM
Many thanks for this. I had spotted the error, but it doesnt seem to have rectified the problem. Any other ideas?