Can anyone help me, when I won't to choose an option from the dropdownmeu, I can't pick one where there is some text under it, id decollaps imediatly,???
<html>
<head>
<title>Bellis Perennis</title>
<script language = "javascript" src="rvjs.js">
</script>
ul li {
position: relative;
float: left;
width:100px;
}
li ul {
position: absolute;
left: 0; /* Set 1px less than menu width */
top: auto;
display: none;
}
/* Styles for Menu Items */
ul li a {
display: block;
text-decoration: none;
color: #777;
background: #fff; /* IE6 Bug */
padding: 5px;
border: 1px solid #ccc;
}
/* this sets all hovered lists to red */
li:hover a, li.over a, li:hover li a:hover, li.over li a:hover {
color: #fff;
background-color: green;
}
/* set dropdown to default */
li:hover li a, li.over li a {
color: #777;
background-color: #fff;
}
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
li:hover ul, li.over ul
{ display: block; } /* The magic */
Bookmarks