Did you try to adjust the padding as I said above?
- Code: Select all
dl.icon dt {
padding-left: 45px; /* Space for folder icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
}
The [/c]padding: 45px;[/c] moves the text to the right leaving enough room for the forum icon to show.
If you are using wider forum icon images you need to increase that padding to make more room for the image.
If adjusting that padding adjusts padding in other areas of your forum that you don't want adjusted you can make a class.
In the forumlist_body.html you can add a class in the <dt class="" like this:
- Code: Select all
<li class="row">
<dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
<dt class="forums" title="{forumrow.FORUM_FOLDER_IMG_ALT}">
Then in your theme/content.css stylesheet add this code for the forums:
- Code: Select all
dl.icon dt.forums {
padding-left: 65px; /* Space for folder icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
}
Try that...