Tagged: main menu, navigation, padding
Hello!
I’ve looked for a solution on the board but couldn’t find one. Would appreciate your guidance.
.
Per image, the final main menu item, needs some padding to the right of the item. In mouseover state, its revealed that the main menu label is pushed right up against the side of the main nav item…can it be padded to look the same as other items?
Thanks
Hey astrolab!
Add this to your custom CSS.
.menu > li:last-child a {
padding-right: 10px !important;
}
Regards,
Elliott
Worked like a charm…thank you!