3rd Sep, 12:48 am
Hey! Sorry for the delay. It looks like you figured out the color change.
To change the font icon to a different font icon you'll need to edit the following in global.css:
If you would like to go back to using images for forum icons..that's quite a bit of code changes and I don't recommend it.
Option 1: revert back to mybb forum icons (they mash a bunch of icons into one then use special css to show a portion of the image)
You'll need to take a look at, at the very least, the forumbit_depth2_forum template and find differences between original and gameone. That will put you back at using images like mybb default theme. From there, you will need to edit the default mybb image sprite with your own image using some photo editor and reupload to your host.
Option 2: use a different font icon
GameOne uses FontAwesome 4.3 so you could potentially use any of those icons.
To change the font icon to a different font icon you'll need to edit the following in global.css:
Code:
.forum_on, .forum_off {
font-family: 'gamefont';
}
.forum_on:before, .forum_off:before {
content: "\e608";
}
If you would like to go back to using images for forum icons..that's quite a bit of code changes and I don't recommend it.
Option 1: revert back to mybb forum icons (they mash a bunch of icons into one then use special css to show a portion of the image)
You'll need to take a look at, at the very least, the forumbit_depth2_forum template and find differences between original and gameone. That will put you back at using images like mybb default theme. From there, you will need to edit the default mybb image sprite with your own image using some photo editor and reupload to your host.
Option 2: use a different font icon
GameOne uses FontAwesome 4.3 so you could potentially use any of those icons.