I'm with LadynRed on this one. It's always better to learn what you're trying to accomplish, because you never know when one of those HTML generators may have slipped in code that doesn't belong, or that you don't want. Then what are you going to do? You'll have to ask someone else how to get rid of it. If you would have just learned it to begin with, you could already know how to do it yourself, and not have to wait on someone else to answer it for you.
Making a navigation shouldn't be difficult at all. If all else fails, use something like this as your base:
Code:
<div id="nav">
<a href="./yourlinkhere.php">Your Link Text</a>
<a href="http://google.com" target="_blank">Google</a>
</div>
However, remember that there is no target="" attribute in XHTML.
Last edited by Colton; 09-01-2010 at 08:44 AM..
|