How to add space between menu background

If you are looking to add space between the menu background as shown in the image above. Then use following code in css. Change “li” class “.hfe-nav-menu" according to your website.

.hfe-nav-menu li {
margin-right: 3px; /* Adjust the value as needed */
}

/* Optional: To remove the margin from the last item */
.hfe-nav-menu li:last-child {
margin-right: 0;
}

Posted in General.

Leave a Reply

Your email address will not be published. Required fields are marked *