I have a navbar that shows a sub navbar on hover. I need to have another sub navbar (so a sub sub navbar) show on a button hover in the sub navbar.
All I need to do is change the Display from "None" to "Block" on hover of the ID= preStart.
This is what I have:
.subsubnavbar-content {
display: none;
position: absolute;
left: 300px;
background-color: #eee;
color: white;
width: 50%;
z-index: 1;
}
#preStart:hover .subsubnavbar-content{
display: block;
}