Hey guys,
I'm editing a basic template for my dad's company - but I'm a total HTML noob so I only have a very basic idea of what's going on! I'm using Notepad++ to edit, and the template I'm using is here. Was wondering if I can pick your brains with all the problems I am coming across please!
The first one; I want to centre the main menu bar (Home, About, Services etc.), but using <DIV ALIGN=CENTER> is not working. Here is the code at present:
How do I centre this?!
Cheers,
Suman
I'm editing a basic template for my dad's company - but I'm a total HTML noob so I only have a very basic idea of what's going on! I'm using Notepad++ to edit, and the template I'm using is here. Was wondering if I can pick your brains with all the problems I am coming across please!
The first one; I want to centre the main menu bar (Home, About, Services etc.), but using <DIV ALIGN=CENTER> is not working. Here is the code at present:
Code:
<!--Begin main navigation menu-->
<div id="menu">
<ul>
<li><a title="Return to Home Page" href="#">Home</a></li>
<li><a title="Learn More About Us" href="#">About Us</a></li>
<li><a title="Company News" href="#">News</a></li>
<li><a title="Services We Offer" href="#">Services</a></li>
<li><a title="Contact Information" href="#">Contact Us</a></li>
<li><a title="Our Affiliates" href="#">Resources</a></li>
</ul>
</div><!--End main navigation menu-->
How do I centre this?!
Cheers,
Suman