Seite 1 von 1

subsilver2 Kategorien Teilen?

Verfasst: 26.11.2011 12:20
von Shorty1968
Hallo gibt es einen anleitung wie man in subsilver2 die Kategorien Teilen kann wie beim Prosilver?

gruß

Re: subsilver2 Kategorien Teilen?

Verfasst: 26.11.2011 12:38
von Talk19zehn
Hello,
sofern du Abstände zwischen den Kategorien dieses Styles meinst, ist ggf. jener Beitrag für dich hilfreich: viewtopic.php?p=910942#p910942

Viele Grüße

Re: subsilver2 Kategorien Teilen?

Verfasst: 26.11.2011 15:00
von Shorty1968
Hello dir auch :D

Vielen dank das habe ich gesucht.

*EDIT*
Da der Link für das phpbb2 war habe ich das mal für das phpbb3 gemacht,hier die änderungen für die es auch suchen.

Demo

Öffne style/template/forumlist_body.html und suche:
open style/template/forumlist_body.html and find:

Code: Alles auswählen

<tr>
	<td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT and U_MARK_FORUMS --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->&nbsp;</td>
</tr>
<tr>
	<th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
	<th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
	<th width="50">&nbsp;{L_POSTS}&nbsp;</th>
	<th>&nbsp;{L_LAST_POST}&nbsp;</th>
</tr>
<!-- BEGIN forumrow -->
	<!-- IF forumrow.S_IS_CAT -->
		<tr>
			<td class="cat" colspan="2"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
			<td class="catdiv" colspan="3">&nbsp;</td>
		</tr>
Ersetze es mit:
Replaced with:

Code: Alles auswählen

<tr>
	<td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT and U_MARK_FORUMS --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->&nbsp;</td>
</tr>
<!-- BEGIN forumrow -->
	<!-- IF forumrow.S_IS_CAT -->
	<tr>
	<td>&nbsp;</td>
</tr>
<tr>
	<th colspan="2">&nbsp;{forumrow.FORUM_NAME}&nbsp;</th>
	<th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
	<th width="50">&nbsp;{L_POSTS}&nbsp;</th>
	<th>&nbsp;{L_LAST_POST}&nbsp;</th>
</tr>