Hey there,
I’m using the “empty” custom link trick to create a new column (without a column title) within a mega menu. It looks great on the normal mega menu, but within the mobile version, is it possible for that item to not appear? It’s just a dud item on the mobile menu.
Site: https://new.synthetex.com/
Look under “Products”
Thanks!
Hey Alex,
Thank you for using Enfold.
You can add a custom css class attribute to the blank menu items or columns, “hide_mobile” for example, then use it to hide them on mobile view.
@media only screen and (max-width: 768px) {
.hide_mobile {
display: none !important;
}
}
Best regards,
Ismael