Posts: 28
Threads: 12
Joined: Dec 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
!
Posts: 461
Threads: 54
Joined: Jul 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";
}
Posts: 28
Threads: 12
Joined: Dec 2017
Nice! That did the trick!
Thanks!
Posts: 461
Threads: 54
Joined: Jul 2017