Forum Moderators: not2easy
I attache event handlers to the ul that change the id name. I use SubMenu1Show and SubMenu1Hide as id names. The css code for these are below. The problem is that if I use either "display: none" or "visibility: hidden" in SubMenu1Hide then it never becomes visible. It is as "display: none" and "visibility: hidden" once declared cannot be overridden.
Any ideas?
The CSS:
#SubMenu1Show{
visibility: visible;
position: absolute;
border: solid green 1px;
top: 0px;
left: 215px;
}
#SubMenu1Hide{
visibility: hidden;
position: absolute;
display: none;
}