Forum Replies Created
-
In reply to: Replace "sticky" and "locked" text with images?
I figured it out but it only displays one image even if it is both stickied and closed. Also, it doesn’t show the images on the front page.
I modified the bb-includes/bb-formatting.php file and added styles.
In reply to: Replace "sticky" and "locked" text with images?Sorry!
Also, changed url http://endlesscreative.net/forums/forum/simbank
In reply to: Replace "sticky" and "locked" text with images?Would the class be the same one that changes the background color of the row? If so – I have this:
.sticky .bbp-topic-title a:before {
content: url(images/star.gif);
margin-right:10px;
}
.status-closed .bbp-topic-title a:before {
content: url(images/lock.gif);
margin-right:10px;
}
and it’s not doing anything – http://endlesscreative.net/forum/forum/simbank !
In reply to: Replace "sticky" and "locked" text with images?Thanks! So for sticky it would be:
.status-sticky .bbp-topic-title a:before {
content: url(images/sticky-topic.png);
margin-right:5px;
}