Quote:
Originally Posted by Snowhog
I understand that. What I don't understand is "WHY" these icons are showing on the Forum Display page, and why "ONLY ON" those specific forums. I can't find anywhere where I can control/change that.
--------------- Added [DATE]1481503613[/DATE] at [TIME]1481503613[/TIME] ---------------
Okay, I see now that every 'unlocked' forum/sub-form displays these icons 'by default'. So it must be hardcoded in one of the primary templates.
|
If you want to hide the green subscribe icons; in CSS Templates of your style look for forumbits.css; comment out the code that looks similar to this.
Code:
.forumactionlinks .subslink {
background-image:url({vb:stylevar imgdir_misc}/subscribed_40b.png);
}
.forumactionlinks .unsubslink {
background-image:url({vb:stylevar imgdir_misc}/unsubscribed_40b.png);
}
Like so:
Code:
//.forumactionlinks .subslink {
background-image:url({vb:stylevar imgdir_misc}/subscribed_40b.png);
}
//.forumactionlinks .unsubslink {
background-image:url({vb:stylevar imgdir_misc}/unsubscribed_40b.png);
}
Note: If you do this then your members will have to use the sub/unsub actions from the forum tools menu; some might find that inconvenient or not even know where to find it.