Hey guys, i have a nav that has a 1px solid border on while developing so i can trouble shoot easier if anything goes wrong, however when i remove this border the nav drops by around 50pixels, i have images of this... dont know how to upload on here, does anyone have skype or anything to speak to help me solve this problem out? Thanks guys, ive attached the code below....
HTML
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>BigLampPhotography.co.uk</title>
<link rel="stylesheet" type="text/css" href="main.css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="Navcontainer">
<div id="Nav">
<ul>
<li><a href="#"><img src="images/navhome.png" alt=""/></a></li>
<li><a href="#"><img src="images/navportraits.png" alt=""/></a></li>
<li><a href="#"><img src="images/navgallery.png" alt=""/></a></li>
<li><a href="#"><img src="images/navcrazy.png" alt=""/></a></li>
<li><a href="#"><img src="images/navcontactus.png" alt=""/></a></li>
<li><a href="#"><img src="images/navsales.png" alt=""/></a></li>
</ul>
</div><!-- end of #Nav -->
</div><!-- end of #Navcontainer -->
CSS
Code:
* {
margin:0;
padding:0;
}
img {
border:none;
}
body {
}
ul{
list-style-type:none;
font-size: 0px;
}
/***** NAVBAR STYLES *****/
#Navcontainer{
background-image: url("images/navbg.png");
background-repeat: repeat-x;
height: 69px;
text-align:center;
vertical-align: middle;
border: 1px solid red;
}
#Nav {
width: 902px;
margin: 29px auto;
text-align: center;
}
#Nav ul {
list-style-type: none;
}
#Nav li {
display:inline;
margin-right: 40px;
}