Home Forums WoodMart support forum How to change logo

How to change logo

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #554171

    pattulingam.j
    Participant

    How to change the logos in the dashboard section.

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

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    To change the icon, This can be implemented with Font Awesome icons. Please add the code to the Theme Settings > Custom CSS > Global.

    .wd-my-account-links .orders-link a:before {
         font-family: 'Font Awesome 5 Free';
    	font-weight: 900;
      content: "\f004" !important;
    }
    
    .wd-my-account-links .edit-address-link a:before {
         font-family: 'Font Awesome 5 Free';
    	font-weight: 900;
      content: "\f068" !important;
    }
    
    .wd-my-account-links .edit-account-link a:before {
        font-family: 'Font Awesome 5 Free';
    	font-weight: 900;
      content: "\f067" !important;
    }
    
    .wd-my-account-links .wishlist-link a:before {
        font-family: 'Font Awesome 5 Free';
    	font-weight: 900;
      content: "\f067" !important;
    }
    
    .wd-my-account-links .customer-logout-link a:before {
        font-family: 'Font Awesome 5 Free';
    	font-weight: 900;
      content: "\f067" !important;
    }

    Then Navigate to Theme Settings > Performance > Fonts and icons > Font Awesome library > Choose always use. Change the icon code as per your requirements.

    Best Regards.

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