Darum geht es doch momentan überhaupt nicht.
Die Lösung ist relativ einfach.
Du hast beim Bearbeiten der Datei:
styles/prosilver/template/
viewforum_body.html einen kleinen Fehler eingebaut.
FINDE:
Code: Alles auswählen
<dt<!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}" <!-- IF topicrow.S_UNREAD_TOPIC -->class="unread"<!-- ENDIF --><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF topicrow.S_TOPIC_MOVED --><strong>{topicrow.TOPIC_TYPE}</strong><!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
ERSETZE MIT:
Code: Alles auswählen
<dt<!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}" <!-- IF topicrow.S_UNREAD_TOPIC -->class="unread"<!-- ENDIF --><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF topicrow.S_TOPIC_MOVED --><strong>{topicrow.TOPIC_TYPE}</strong><!-- ENDIF -->><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
Es fehlt ein
Zeichen vor dem
Tag.