Most Bizarre Thing I've Seen

Alright this is just driving me insane…I am using DW 8 as I have been for a long time…tonight is the first time I thought I would build a site map and simply add a link to it. I am calling a page with my list on it using php…this simple bit of code and specifically the site map text is blowing my div all to hell

<div id=“ftrMenu”>
<ul>
<li><a href=“index.php”>Home</a></li>
<li><a href=“sitemap.php”>Site Map</a></li> (this line right here is killing me)
<li><a href=“privacy.php”>Privacy Policy</a></li>
<li><a href=“help.php”>help</a></li>
</ul>
</div>

I am sure it is an easy fix and most things are…thanks for any help

Sounds like a styling issue. To fix it, we need to see all your CSS code and HTML code (preferably a live sample).

Thanks - I figured it out…I knew it was just a matter of time. I shouldn’t have been looking at it after 19 hours straight…a few hours sleep helped get me right.

Ok, so mistake #1

IS the DIV even neccessary? So many layouts I see people slapping DIV around the UL for no good reason when all the styling could just be put on the UL in the first place.