http://www.gowaybeyond.com/personal-training/
One more question, how do I get my drop down menu to drop down when the mouse hovers over it?
Thanks.
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
.site-header .nav li:hover .dropdown-menu {
display: block;
}
.site-header .nav .dropdown .caret {
margin-top: 2px !important;
border-top: 7px solid;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
}
Regards,
Works perfect, thanks!
Please login or Register to submit your answer