• Resolved yolandal

    (@yolandal)


    Is it possible to create a clickable icon in the menubar instead of the word ‘Login’ in the menu?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support mark l chaves

    (@mlchaves)

    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
    Plugin Support mark l chaves

    (@mlchaves)

    Hey @yolandal,

    We’re going to mark this thread as resolved since we haven’t heard back from you.

    Please feel free to start a new thread or submit a help request ??

    https://code-atlantic.com/contact-us/

    Have a great day!

    Thread Starter yolandal

    (@yolandal)

    Hello, I’m sorry I didn’t reply on your message.
    I’ll try to implement your tip soon, thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Icon in menubar’ is closed to new replies.