Home Forums Basel support forum Login/Register replace icon user

Login/Register replace icon user

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25159

    lelikletter
    Participant

    Hi, how can I replace the text header_links (login/Register) icon (fa-users)?

    Attachments:
    You must be logged in to view attached files.
    #25185

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to do this

    div.right-column .header-links li {
    	font-size: 0;
      line-height: 0;
      text-align: center;
    }
    
    div.right-column .header-links li a {
      display: inline-block;
      height: 30px;
      width: 30px;
      position: relative;
      top: 4px;
    	font-size:0;
    	font-style: normal;
    }
    
    div.right-column .header-links li a:before {
    	content: "\e005";
    	display:inline-block;
    	font-size:20px;
    	line-height: 30px;
      height: 30px;
      width: 30px;
      font-family: Simple-Line-Icons;
    }
    
    .logged-in .right-column .header-links li:last-child {
        display:none;
    }
    
    div.right-column .header-links li a:after,
    div.right-column .header-links li:after {
    	content:none;
    }
    
    #25197

    lelikletter
    Participant

    Thank you!

    #25212

    Artem Temos
    Keymaster

    You are welcome!

Viewing 4 posts - 1 through 4 (of 4 total)