Quote:
|
I want the top navigation ber aligned to the right, but how do i separete the options a little more? they're to close to each other.
|
Put your top nav into a list. You have this:
Quote:
<div id="top_nav">
<a class="white" href="#">HOME</a> |
<a class="white" href="#">ABOUT</a> |
<a class="white" href="#">PORTFOLIO</a> |
<a class="white" href="#">CONTACT</a> |
</div>
|
Make it into this:
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a><li>
<li><a href="#">Porfolio</a><li>
<li><a href="#">Contact</a><li>
</ul>
Then you style the list items, controlling the spacing and the appearance of the list and the <a>'s inside them.
Quote:
|
3. When I try to type my content or insert a image it all appears on top of the left navigation, how do I move it over to the right.
|
Create another div for your content and give it a wide enough left margin to push it over past the left nav area. It is not necessary to float it either.
You've got a LOT of floated elements, mostly unnecessary too. The only thing I see that you would really want to float is the left nav and maybe the top nav UL.
Quote:
|
4.The footer it's supposed to have a gray background and be text centered, what I'm I doing wrong?.
|
Couple of things.
First, get rid of the duplicate <html> tag at the top.
Second, if you're going to use floats you must learn to CLEAR them. You have not cleared any of your floats. There are several methods:
http://css-discuss.incutio.com/?page=ClearingSpace
Once you clear your floats, I think you'll find your footer where it belongs.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|