It will work becuase in the section where it is coded with "<a href"'s. e.g.
Code:
<li><a href="http://www.cssdrive.com/index.php/news/">Web Design News</a></li>
<li><a href="http://www.cssdrive.com/index.php/examples/">CSS Examples</a></li>
<li><a href="http://www.cssdrive.com/index.php/main/csscompressor/">CSS Compressor</a></li>
<li><a href="http://www.dynamicdrive.com/forums/forumdisplay.php?f=6">CSS Forums</a></li>
</ul>
You could still easily add the target attribute and it should work:
Code:
<li><a target="iframe1" href="http://www.cssdrive.com/index.php/news/">Web Design News</a></li>
<li><a target="iframe1" href="http://www.cssdrive.com/index.php/examples/">CSS Examples</a></li>
<li><a target="iframe1" href="http://www.cssdrive.com/index.php/main/csscompressor/">CSS Compressor</a></li>
<li><a target="iframe1" href="http://www.dynamicdrive.com/forums/forumdisplay.php?f=6">CSS Forums</a></li>
</ul>
Hope this helps. Dan.
Bookmarks