7th Jun, 10:40 pm
(4th Jun, 03:53 pm)veconomy Wrote: How do we change the controller icon on the GameOne theme?
I want it to be a key instead of a controller.
Edit the global.css file on line 542 and find the following:
Code:
.forum_on:before, .forum_off:before {
content: "\e608";
}
Replace with:
Code:
.forum_on:before, .forum_off:before {
content: "\e608";
font-family: FontAwesome;
}
Modify what is in between the double quotes above. You MUST use FontAwesome for this edit. Checkout the following link for FontAwesome fonts:
http://fontawesome.io/icons/
Click on any icon you want then find the "unicode" value for the icon and insert into your global.css edit.
If I was changing the icon to a key I would use the following code:
Code:
.forum_on:before, .forum_off:before {
content: "\f084";
font-family: FontAwesome;
}
I hope that helps you.