I am having a problem in trying to line up my image inside the navbar list items area. There seems to be padding coming into the image therefore having it in the wrong area. I have put padding:0 and margin:0 in lots of areas but still nothing. Any help on trying to solve the matter would be great. Thanks in advance. Below is my navbar code.
Thanks Edmond
#navbar{
width:800px;
border:1px solid #000;
height:30px;
margin-left:auto;
margin-right:auto;
padding:0;
}
<!--start of navbar-->
#navbar ul{
margin:0;
padding:0;
}
#navbar ul li{
float:left;
position:relative;
list-style-type:none;
margin:0;
padding:0;
}
#navbar ul li a{
width:190px;
height:25px;
display:block;
color:red;
text-align:center;
line-height:0;
margin:0;
padding:0;
text-decoration:none;
font-size:20px;
background-image:url(images/navback.jpg);
}
<!--end of navbar-->