Hey there!
I'm coding my new portfolio and the navigation on it is in the wrong place and I can't figure out why.
http://i26.tinypic.com/25psi10.png
I want the text to be inline with the lines on the sides but instead it's moved to the right and down and I can't figure out why it's done this.
This is the relevant coding:
MozazDesign Portfolio
</div><!--end logo-->
<div id="nav">
<ul id="main_nav">
<li><a href="#">home</a></li>
<li><a href="#">about me</a></li>
<li><a href="#">gallery</a></li>
<li><a href="#">blog</a></li>
<li><a href="#">contact</a></li>
</ul><!--end main nav-->
</div><!--end nav-->
</div><!--end header-->
body { padding: 0px; margin: 0px; background:url('images/Background.png'); font-family: century gothic; }
nav a {
text-decoration: none; color: white; }
container {
margin: 0 auto; width: 960px; }
logo {
background:url('images/Logo.png'); height: 340px; width: 524px; float: left; margin-left: 0px; }
nav {
background:url('images/Nav_Container.png'); width: 427px; height: 33px; float: right; margin-top: 100px; padding: 0px;
}
main_nav li {
list-style: none; display: inline; font: 18px century gothic, sans-serif; color: white; margin-right: 18px; padding: 0px; }
Any ideas?
Thanks in advance!