Hi,
I have just uploaded my website online. I had used the creating a website from adobe as a basis for my website however even after deleting the links i still seem to be having difficulties.
www.newcityexplorer.com
Thanks
Alexisonsmith
You also need to remove the closing tags at the end of </section> that relate to the ones you just removed. I.e. </div> and </body>.
You will need to create a new CSS rule - header{float:left, width:??;} where your width could be 100% or whatever you need it to be. Then add float:left into your #maincontent CSS and also give it a width. This should align the elements.
You've still got 2 <body> opening tags and you are reusing a <div> id.
<body>
<div id="container">
<header id="Logo">
<hgroup>
<h1>New City Explorer</h1>
<h2>Top 10 things to do in a city</h2>
</hgroup>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="links.html">Links</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<body>
<div id="container">
You can find a lot of those errors yourself by validating the page here:
Until you fix those main errors, tough to do much with the page.
Best wishes,
Adninjastrator
North America
Europe, Middle East and Africa
Asia Pacific