I'm trying to import some SSI to my site for the navigation bar. When I do, I get some sort of message from Dreamweaver saying something about unnecessary tags or something. This is the part of the code where Dreamweaver is indicating a problem:
CODE
<div id="wrapper">
<img src="images/header.jpg" alt="header">
<div class="topbar">
<br />
<br />
<br />
</div>
<div class="topbar_bottom"></div>
<div id="menu_container">
<div class="menu"><?php include('leftnav.php') ?></div>
<div class="menu_bottom"></div>
</div>
...
</div>
<img src="images/header.jpg" alt="header">
<div class="topbar">
<br />
<br />
<br />
</div>
<div class="topbar_bottom"></div>
<div id="menu_container">
<div class="menu"><?php include('leftnav.php') ?></div>
<div class="menu_bottom"></div>
</div>
...
</div>
The dreamweaver message is saying:
QUOTE
Marked Invalid because it's an overlapping or enclosed tag.
If the display looks correct, it is safe to delete these tags.
If the display looks correct, it is safe to delete these tags.
Naturally, if the display looked correct, I wouldnt even bring this up. When that code is in, the display view gets rid of everything but the SSI. I have no clue where to go with this. Any thoughts?
