Change the label on the super menu
-
How do I change the labels on this menu? I want to move these (all and hot) labels to the right side of this menu, like in the picture I sent you.
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add this code to the Theme Settings > Custom CSS:
.wd-sub-menu li > a {
display: inline-flex;
align-items: center;
gap: 8px;
}
.wd-sub-menu li > a .menu-label {
position: static;
margin-top: 0;
margin-left: 0;
align-self: center;
display: inline-flex;
}
Best Regards
It’s already on the right, but why are there extra symbols below?
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add this code to the Theme Settings > Custom CSS:
.wd-sub-menu .menu-label:before,
.wd-sub-menu .menu-label:after {
display: none;
}
Best Regards