|
When i do mine i make the nav a php include, and add the info to the style sheet (height, location, etc.)
like this...
css sheet:
#topnav { height:10px; width: 300px; top:5px; left:483px; padding-left: 0px; padding-top: 0px; }
#topnav a { text-decoration: none; color: black; font-size: 12px; font-weight: bold; }
#topnav a:hover { color:white;}
#topnav span { color: black; margin:0 1px; }
html:
<?php require('topnav.html'); ?>
topnav:
<div id="topnav">
<div align="right"><a href="index1.php">Home</a><span> | </span><a href="contact.php">Contact Us</a><span> | </span><a href="privacy.php">Privacy Policy</a></div>
</div>
once you have the code in the css, you can move it into place and fine tune it.
i hope this is what you're looking for and that it helps! it may not be the best way, but it works for me!
cheers!
Last edited by bigfreak : 01-16-2008 at 10:55 PM.
|