Archived topic
Footer menu issue
3 replies · Started by Jerry on November 26, 2022
Hello,
For some reason, I'm having problems getting the menu in the footer right. Elements>>Footer>> then I created a block with the nav dragged in, then I selected the menu. It doesn't show all the menu items, cutting off a couple of link even though I have it set to allow multiple lines. Also there is no spacing on the live site between menu items.
Thank you in advance!
edit view: https://www.jetsetty.com/wp-content/uploads/Screenshot-2022-11-26-at-9.04.09-AM.jpg
live view: https://www.jetsetty.com/wp-content/uploads/Live-site-footer.jpg
Jerry
Hi Jerry,
The navigation block is a WP core block, the theme doesn't have control over that.
However, you can give the below CSS a try to add spacing between menu items:
@media (min-width: 769px) {
.site-footer ul.wp-block-navigation__container li:not(:first-child) {
margin-left: 10px;
}
}
For other issues, it's better to reach out to WP support.
Perfect. Thanks so much!
No problem :)