Seite 1 von 1

[MOD] Hyper Cells

Verfasst: 19.06.2007 14:41
von Foren Mitglied
Eigener Code ;-)


Style: prosilver

ÖFFNE: forumlist_body.html

SUCHE:

Code: Alles auswählen

                <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
                    <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF -->       
ERSETZE MIT:

Code: Alles auswählen

                <dt style="cursor: pointer;" onclick="window.location.href='{forumrow.U_VIEWFORUM}'" title="{forumrow.FORUM_FOLDER_IMG_ALT}">
                    <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF -->        
ÖFFNE: viewforum_body.html

SUCHE:

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 --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>       
ERSETZE MIT:

Code: Alles auswählen

                <dt onclick="window.location.href='{topicrow.U_VIEW_TOPIC}'" <!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --> style="cursor: pointer; background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ELSE -->style="cursor: pointer;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}"><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>      
ÖFFNE search_results.html

SUCHE:

Code: Alles auswählen

                    <dt <!-- IF searchresults.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF -->>        
ERSETZE MIT:

Code: Alles auswählen

                    <dt style="cursor: pointer;" onclick="window.location.href='{searchresults.U_VIEW_TOPIC}'"
                        <!-- IF searchresults.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF -->>        

Re: [MOD] Hyper Cells

Verfasst: 27.10.2018 16:05
von Foren Mitglied
Änderungen für phpBB 3.2.3 - Prosilver


Für das Style Prosilver müsste man an 3 Dateien etwas hinzufügen:

ÖFFNE /styles/prosilver/template/forumlist_body.html

FINDE:

Code: Alles auswählen

<dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
ERSETZE MIT:

Code: Alles auswählen

<dt style="cursor: pointer;" onclick="window.location.href='{forumrow.U_VIEWFORUM}'" title="{forumrow.FORUM_FOLDER_IMG_ALT}">
ÖFFNE /styles/prosilver/template/viewforum_body.html

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}">
ERSETZE MIT:

Code: Alles auswählen

<dt style="cursor: pointer;" onclick="window.location.href='{topicrow.U_VIEW_TOPIC}'"<!-- 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}">
ÖFFNE: /styles/prosilver/template/search_results.html

FINDE:

Code: Alles auswählen

<dt<!-- IF searchresults.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{searchresults.TOPIC_FOLDER_IMG_ALT}">
ERSETZE MIT:

Code: Alles auswählen

<dt style="cursor: pointer;" onclick="window.location.href='{searchresults.U_VIEW_TOPIC}'"<!-- IF searchresults.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{searchresults.TOPIC_FOLDER_IMG_ALT}">