Hellusius
09-21-2006, 05:49 PM
I made links in dropdowntables, but they are not properly selectable, as in, whever I , move my cursor downwards of the link and into the dropdown table, the dropdown dissapears again, I have to be really fast to click anything.
the CSS code is as following:
ul {
padding: 0;
margin: 0;
list-style: none;
}
li {
float: left;
position: relative;
width: 100px;
list-style: none;
}
li ul {
display: none;
position: absolute;
top: 20px;
left: 0;
background-color=#000
}
li:hover ul, li.over ul{ display: block; }
I know the top is 20px but else it doesn't fit, if you want to see how it works (well actually how it doesn't fully work)
click here to see the website (http://thereturn.wc3campaigns.net/index.html)
in IE its most likely that its not viewable, this has to do with an inclomplete javascript that I am working on still in order to get it working in IE as well.
the CSS code is as following:
ul {
padding: 0;
margin: 0;
list-style: none;
}
li {
float: left;
position: relative;
width: 100px;
list-style: none;
}
li ul {
display: none;
position: absolute;
top: 20px;
left: 0;
background-color=#000
}
li:hover ul, li.over ul{ display: block; }
I know the top is 20px but else it doesn't fit, if you want to see how it works (well actually how it doesn't fully work)
click here to see the website (http://thereturn.wc3campaigns.net/index.html)
in IE its most likely that its not viewable, this has to do with an inclomplete javascript that I am working on still in order to get it working in IE as well.