This works great in WP2.6.2 + bbPress 1.0a2.
Thanks.
I'm terrible at CSS, but I made a few changes to display an icon which I put here: /my-plugins/hidden-forums/shield.png
/bb-admin/style.css
/* Custom */
#shield {
background-image:url(../my-plugins/hidden-forums/shield.png);
background-repeat:no-repeat;
margin: 0 10px 0 0;
width:16px;
height: 100%;
float:left;
padding: 0 0 5px 0;
}
/bb-admin/content-forums.php line 73, I added the shield class:
<ul id="forum-list" class="list:forum list-block holder widefat shield">
On the front end...
/my-templates/jingo/style.css I added the CSS:
/* Custom */
#shield {
background-image: url(../../my-plugins/hidden-forums/shield.png);
background-repeat:no-repeat;
margin: 0 10px 0 0;
width:16px;
height: 100%;
float:left;
}
And then in the plugin file itself,
/my-plugins/hidden-forums/hidden-forums.php I specified the html to use as the label:
//$hidden_forums['label']="[H] ";
$hidden_forums['label']="<span id='shield'> </span>";
Now, the spacing etc works for me in FF3. If there's a correct way of doing this please share!