Need some CSS help please

DarkKnight69

Golden Member
Jun 15, 2005
1,688
0
76
Am working on a menu for a website for my mother and I am having issue with a menu. I have this css code, which works out great to a horizontal menu, but I need a vertical one. CSS gods, please advise me...



.dropmenu {
position: absolute;
left: -1500px;
visibility: visible;
z-index: 101;
float: left;
width: 122px;

border-width: 1px;
border-style: solid;
border-color: #BFBFBF;
background-color: #FFFFFF;
}
.dropmenu ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.dropmenu li {
display: inline;
}
.dropmenu a, .dropmenu a:visited, .dropmenu a:active {
display: block;
width: 120px;

padding: 2px;
margin: 1px;
font-family: Arial;
font-size: 10px;
font-weight: normal;
text-align: center;
text-decoration: none;

color: #000000;
background-color: #D4D4D4;
}
.dropmenu a:hover {
padding: 2px;
margin: 1px;
font-family: Arial;
font-size: 10px;
font-weight: normal;
text-align: center;
text-decoration: none;

color: #000000;
background-color: #BFBFBF;
}
 

tersome

Senior member
Jul 8, 2006
250
0
0
It's hard to tell without seeing the entire page, but removing this part might work.

Originally posted by: DarkKnight69
.dropmenu li {
display: inline;
}

 

DarkKnight69

Golden Member
Jun 15, 2005
1,688
0
76