Home › Forums › WoodMart support forum › I would like to change the my-account icons to font awesome icons. › Reply To: I would like to change the my-account icons to font awesome icons.
April 22, 2021 at 10:21 am
#285489
Skimi
Participant
Hello Aizaz, thanks for your reply and the list with 4.7 icons. I’ve tried it with following CSS, but I get a white space instead of an icon.:
.wd-my-account-links .wishlist-link a:before {
content: "\f004";
font-family: "Font Awesome 5 Free";
}
.wd-my-account-links .my-tickets-link a:before {
content: "\f128";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .orders-link a:before {
content: "\f290";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .downloads-link a:before {
content: "\f019";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .payment-methods-link a:before {
content: "\f19c";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .edit-address-link a:before {
content: "\f278";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .edit-account-link a:before {
content: "\f05a";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .customer-logout-link a:before {
content: "\f08b";
font-family: 'Font Awesome 5 Free';
}
.wd-my-account-links .wc-smart-coupons-link a:before {
content: "\f029";
font-family: 'Font Awesome 5 Free';
}
Thank you
Skimi