Hello @jbijman,
Please add this CSS code in your additional CSS field.
ul.dropdown-menu {
float: none!important;
}
Thanks
Hello @jbijman,
If you are still getting issue, Can you please share a screenshot along with the site URL. I can find easily that issue.
Thanks
Hi,
It looks like the problem is in this code:
/* Menu Toggle */
.navbar-toggle {
border-radius: 0;
}
@media only screen and (max-width: 767px) and (min-width: 480px)
{
.open{
}
}
@media (min-width: 768px) {
.dropdown .dropdown-menu{
display: block;
opacity:0;
-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-ms-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
}
.dropdown:hover .dropdown-menu {
display: block;
opacity: 1;
}
}
I disabled it and now it’s working proparly again.