dpkyte
02-15-2006, 11:20 PM
Im using that suckerfish menu and want to put up an unordered list. My issue is the unordered list follows the 125 width for the menu. What is the best way to not follow te UL or LI for the menu if I want the list to come out properly.
////
My CSS for the menu is:
ul li { position: relative;
}
li ul { position: absolute;
left: 125px;
top: 0;
display: none;
}
ul li a {
display: block;
text-decoration: none;
color: #777;
background: #ff0000;
padding: 5px;
border: 1px solid #ccc;
border-bottom: 0;
font-size: 10px;
}
ul { margin: 0;
padding: 0;
list-style: none;
width: 125px;
border-bottom: 1px solid #ccc;
}
////
My CSS for the menu is:
ul li { position: relative;
}
li ul { position: absolute;
left: 125px;
top: 0;
display: none;
}
ul li a {
display: block;
text-decoration: none;
color: #777;
background: #ff0000;
padding: 5px;
border: 1px solid #ccc;
border-bottom: 0;
font-size: 10px;
}
ul { margin: 0;
padding: 0;
list-style: none;
width: 125px;
border-bottom: 1px solid #ccc;
}