Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #342790
    André Zenker
    Participant

    Is there a way to place a padlock icon behind the normal text of a menu item (to indicate that the menu item is protected)?

    #342792
    sujapati
    Keymaster

    @Andre: We just want to clarify your requirement to ensure we provide the correct solution.  When you mentioned placing a padlock icon behind the menu text, do you mean you just want to show a lock icon as a subtle badage before the menu?  Please add the CSS code to your site.

    
    @media screen and (min-width: 64em) {
      .site-header ul#primary-menu:before {
          content: "\f023";
          font-family: "FontAwesome";
          position: absolute;
          top: 17px;
          transform: none;
          opacity: 0.3;
          font-size: 14px;
          pointer-events: none;
          left: 7px;
      }
    }
    

    Please let us know if that is what you are looking for.

    Regards,
    Sujapati

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.