I am having trouble getting my navigation lists in my header to space properly, so that they can be viewable and used correctly. Here's a screen shot of the problem:
<ul> <li><a href=\"#\">HOME</a></li> <li><a href=\"#\">FEATURES</a></li> <li><a href=\"#\">FAQS</a></li> <li><a href=\"#\">ABOUT US</a></li> </ul> </div> <div id=\"main\"> <img id=\"align\" src=\"images/round-arrows.gif\" /> <h1 id=\"h1\">3 STEPS<br /> TO YOUR <br /> SUCCESS...</h1> <br /> <div id=\"main1\"> <h3>1. TRACK</h3><br /> <p>\"You cannot improve that<br /> which you do not track.\"</p><br /> <p>Take control of your finances with our easy-to-use tracking and budgeting software and begin the journey to financial freedom.</p><br /> <p>By the way, we thought it only fair to tell you that this is the only step our competitors provide. But there are still 2 vital steps...</p> <br /> <a href=\"#\"><img style=\"margin-top:1px;\" src=\"images/learn-more.gif\" /></a> </div> <div id=\"main2\"> <h3>2. EVALUATE</h3><br /> <ul> <li>Over 100 powerful calculators created by our team of highly-specialized mathematicians gives you ultimate ability to see \"what if\" situations.</li><br /> <li>Solid, provident advice in all major aspects of your financial life, provided by experts.</li> </ul> <br /> <a href=\"#\"><img style=\"margin-top: 60px;\" src=\"images/demo.gif\" /></a> </div> <div id=\"main3\"> <h3>3. DECIDE</h3><br /> <p>You will inevitably make some decisions on your own, but when it comes to your financial future, you want to know you’re getting the best advice possible.</p><br /> <p>We are assembling the most qualified and wide team of professional advisors in one place than ever before.</p> <br /> <a href=\"#\"><img style=\"margin-top: 48px;\" src=\"images/join-free.gif\" /></a> </div> </div> <div id=\"main-right\"> <img alt=\"People\" src=\"images/people.gif\" /> </div> <div id=\"main-right2\"> <p><b><a href=\"#\">The Success Spiral <img id=\"align2\" alt=\"Go Arrow\" src=\"images/goarrow.gif\" /></a></b></p><br /> <p>What is it? Learn about this powerful concept, and why it is the foundation of our provident philosophy, and your financial success!</p> </div> <div class=\"clear\"></div> <img style=\"background-repeat:repeat\" src=\"images/background.gif\" /> </div> </div><!--END OF CONTAINER, AND THUS THE ENTIRE PAGE! --> </div><!--END OF BACKGROUND COLOR, AND THUS THE ENTIRE PAGE! --> </body> </html>
http://meandmyback.com/provident-living ... messed.bmp
Any help would be appreciated - I have tried a bunch of things and just can't figure it out. Here's the HTML, and then the CSS:
NOW FOR THE CSS
it would make more sense to use
OR
Also once the spacing is corrected you will notice that your navigation will appear "backwards" like
To fix this u will need to change
#header ul {float:right;
}
#header ul li {
float: right;
}
TO
#header ul {float:left;
}
#header ul li {
float: left;
}
You may want to clean up the code some more though. It will definitely fix some of your problems down the road.