-
Please ensure that you have Entrada Child theme installed and active.
-
Please go to Appearance >> Editor and under Entrada Child theme on top right corner, click on style.css file to edit it.
- The last line on will be something like this :
/* = Child Theme customization starts here
------------------------------------------------------- */
- Copy the code below and paste it exactly below the last line shown above:
.icon-level1:before {
content: '\e938';
}
.icon-level2:before {
content: '\e939';
}
.icon-level3:before {
content: '\e93a';
}
.icon-level4:before {
content: '\e93b';
}
.icon-level5:before {
content: '\e93c';
}
.icon-level6:before {
content: '\e93d';
}
.icon-level7:before {
content: '\e900';
}
.icon-level8:before {
content: '\e93e';
}
- Now, for each level, \exxx is the code that pulls the icon. So all you need to do is decide which icon you want the level icons to be replaced with for each of them - and then replace the \exxx part with corresponding icons content of your own font icon or the icon available in the theme. You can find the \exxx part of each corresponding icon by right clicking on the icon and inspecting it with firebug or in your font icons css file.
Thank you