WallBB Forums
How to change forum icons - Printable Version

+- WallBB Forums (https://wallbb.co.uk/forums)
+-- Forum: Theme Section (https://wallbb.co.uk/forums/forumdisplay.php?fid=5)
+--- Forum: Theme Support (https://wallbb.co.uk/forums/forumdisplay.php?fid=10)
+--- Thread: How to change forum icons (/showthread.php?tid=41)



How to change forum icons - rocketfoot - 12-13-2017

How do you change the forum icons to a single font awesome icon?  I changed star to comments in forum_dept2 but the ball icon is still under the comments icon?  I want to get rid of the sphere and just have a larger comments icon.

Thanks Cool !


RE: How to change forum icons - WallBB - 12-14-2017

Hey Rocketfoot,
Single fontawesome icon is quite easy mate, you changed the forumbit_depth2 template and now use this css as well in global.css

Replace the below code in global.css
Code:
.forum_status {
font-size: 30px;
text-align: center;
}

.forum_status i {
display: inline-block;
line-height: 50px;
}

.forum_on {
color: #ffa84c;
}

.forum_off {
color: #bbb;
}

.forum_offlink {
color: #ccc;
}

.forum_offlock {
color: #ccc;
}

.forum_offlock i:before {
content: "\f023";
}

.forum_offlink i:before {
content: "\f0c1";
}



RE: How to change forum icons - rocketfoot - 12-14-2017

Nice!  That did the trick!

Thanks!


RE: How to change forum icons - WallBB - 12-15-2017

Closing this now.