Mkay, what is the most simple way of getting list elements to display horizontally in Internet Explorer? This code works for what I am wanting to do in Firefox however I cannot seem to get it working in IE. So basically all I want is a HOME button and an ESPANOL button with a line seperating them what is the most simple way to accomplish this?
Code:
ul.menu2 {
list-style: none;
padding-top: 110px;
padding-left: 700px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
}
ul.menu2 li a {
text-decoration: none;
display: block;
width: 75px;
float: left;
color: #000000;
padding-left: 25px;
border-right: 1px solid;
border-color: #000000;
}
ul.menu2 li a:hover {
color: #FFFFFF;
}
ul.menu2 li a:active {
color: #FFFFFF;
}