Hi guys
I have a menu,
http://thefml [dot] org [dot] uk/secret/main/home_page/
and it has white spaces or white gaps in it.
How to remove it?
This is the css,
div.menu {
width: 968px;
height: 40px;
padding: 0px;
border: 0px solid gray;
margin-left: 15px;
margin-top: 15px;
position: absolute;
}
#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
text-align: left;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a
{
font-size: 90%;
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: blue;
}
#navcontainer ul li a:hover
{
font-size: 90%;
color: #fff;
background-color: #369;
}
#navcontainer2 ul
{
margin: 0;
padding: 0;
list-style-type: none;
text-align: left;
}
#navcontainer2 ul li {
display: inline;
}
#navcontainer2 ul li a
{
font-size: 90%;
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: red;
}
#navcontainer2 ul li a:hover
{
font-size: 90%;
color: black;
background-color: red;
}
Thanks in advanced.