Hi @yolandal,
That’s a great question. User Menus doesn’t have built-in support for that.
The good news is that you can either write custom CSS or find a plugin to make that happen.
Here’s a CSS example you or your web developer can use and tweak as needed.
/* Add add the my-login-icon classname to your login menu item CSS classes. */
.my-login-icon {
background-image: url(https://yourcool.site/yourlinktoyouriconimage.png);
background-repeat: no-repeat;
background-size: contain;
}
/* Make the link text invisible. */
.my-login-icon a {
opacity: 0;
}
Please let us know how that goes ??
Cheers!
-
This reply was modified 3 years ago by
mark l chaves. Reason: Code clarification