1) Please send us the WordPress dashboard access privately through the contact form, which is on the right side at https://themeforest.net/user/muffingroup#contact and tell me which icon you want to use exactly, and I will help you with that.
Notice!
Please attach a link to this forum discussion.
Sending incorrect or incomplete data will result in a longer response time.
Therefore, please ensure that the data you send are complete and correct.
2) The font family is necessary to Font Awesome work.
We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.
Cookies are small text files that can be used by websites to make a user's experience more efficient.
The law states that we can store cookies on your device if they are strictly necessary for the operation of this site. For all other types of cookies we need your permission. This means that cookies which are categorized as necessary, are processed based on GDPR Art. 6 (1) (f). All other cookies, meaning those from the categories preferences and marketing, are processed based on GDPR Art. 6 (1) (a) GDPR.
This site uses different types of cookies. Some cookies are placed by third party services that appear on our pages.
You can at any time change or withdraw your consent from the Cookie Declaration on our website.
Learn more about who we are, how you can contact us and how we process personal data in our Privacy Policy.
Please state your consent ID and date when you contact us regarding your consent.
Comments
Hi,
Choose the element with the icon you want to use, choose to select an icon, and choose Font Awesome from the dropdown menu.
Best regards
What I mean is how to reference the Font awesome icon in a CSS statement similar to the one below. Right now the reference shows up empty.
.woocommerce .woocommerce-MyAccount-navigation-link--affiliate-area a:before { content: "\f1d3"; }
If you inspect the Font Awesome icon you may notice that it has a couple of attributes more:
What I marked on the screenshot is necessary for Font Awesome to work, so you must add it to your custom CSS.
https://muffingroup.com/betheme/elements/icons/
Best regards
Thank you very much! I would like to know exactly how to write the statement added in Custom CSS.
It should look as you wrote here, but also add font-family, and font-weight as I showed on the screenshot above.
Best regards
Do you mean write the code like this?
.woocommerce .woocommerce-MyAccount-navigation-link--affiliate-area a:before {
font-family: ‘Font Awesome 5 Free’;
font-weight: 12;
content: "\f1d3";
}
I mean is it possible to define the icon that references font awesome at the beginning so that the code doesn't have to be repeated below.
The font-weight must be set to 900.
Anyway, I do not understand what you mean by this:
I mean is it possible to define the icon that references font awesome at the beginning so that the code doesn't have to be repeated below.
Can you explain that in more detail, please?
Thanks
There are 2 problems:
1. I wrote the following code, but it doesn't show the icon.
.woocommerce .woocommerce-MyAccount-navigation-link--affiliate-area a:before {
font-family: ‘Font Awesome 5 Free’;
font-weight: 900;
content: "\f0c0";
}
2. Can I affirm the reference to the font awesome icon inside the HEAD so that I don't have to repeat the font-family statement when I use it below.
1) Please send us the WordPress dashboard access privately through the contact form, which is on the right side at https://themeforest.net/user/muffingroup#contact and tell me which icon you want to use exactly, and I will help you with that.
Notice!
Please attach a link to this forum discussion.
Sending incorrect or incomplete data will result in a longer response time.
Therefore, please ensure that the data you send are complete and correct.
2) The font family is necessary to Font Awesome work.
Thanks