Archived topic
dropdown toggle position
3 replies · Started by MARCO on December 8, 2019
Viewing posts 1–4 of 4
Hi,
how can i move dropdown toggle icon from right to bottom?
Thank you
Hi there,
try this CSS:
@media (min-width: 769px) {
.main-navigation .main-nav ul li.menu-item-has-children>a {
position: relative;
}
.menu-item-has-children .dropdown-menu-toggle:before {
position: absolute;
line-height: 1em;
left: 50%;
transform: translateX(-50%);
bottom: 30px;
}
}
Thank you so much! It works!
Glad to be of help
This archived topic is closed to new replies.