Seite 2 von 4

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:10
von TammY
winnetou hat geschrieben:Hallo,
das ist auf subsilver2 aufgebaut. Dann müsste eigentlich in der forumlist_body.html bei Zeile61 dieses stehen:

Code: Alles auswählen

<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a><!-- ENDIF -->

leider nein, mein code schaut so aus

Code: Alles auswählen

<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN forumrow -->
	<!-- IF forumrow.S_IS_CAT -->
		<tr>
			<td class="catdiv" colspan="5"><h2>{forumrow.FORUM_NAME}</h2></td>
		</tr>
	<!-- ELSEIF forumrow.S_IS_LINK -->
		<tr>
			<td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
			<td class="row1">
				<!-- IF forumrow.FORUM_IMAGE -->
					<div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
				<!-- ENDIF -->
				<a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
				<p class="forumdesc">{forumrow.FORUM_DESC}</p>
			</td>
			<!-- IF forumrow.CLICKS -->
				<td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
			<!-- ELSE -->
				<td class="row2" colspan="3" align="center">&nbsp;</td>
			<!-- ENDIF -->
		</tr>
	<!-- ELSE -->
		<!-- IF forumrow.S_NO_CAT -->
			<tr>
				<td class="catdiv" colspan="2"><h4>{L_FORUM}</h4></td>
			</tr>
		<!-- ENDIF -->
		<tr>
			<td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
			<td class="row1">
				<!-- IF forumrow.FORUM_IMAGE -->
					<div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
				<!-- ENDIF -->
				<a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
				<p class="forumdesc">{forumrow.FORUM_DESC}</p>
				<!-- IF forumrow.MODERATORS -->
					<p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
				<!-- ENDIF -->
				<!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
					<p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
				<!-- ENDIF -->
			</td>
			<td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
			<td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
			<td class="row2 listlast" align="center" nowrap="nowrap">
				<!-- IF forumrow.LAST_POST_TIME -->
					<p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
					<p class="topicdetails">Last post by: {forumrow.LAST_POSTER_FULL}
					</p>
				<!-- ELSE -->
					<p class="topicdetails">{L_NO_POSTS}</p>
				<!-- ENDIF -->
			</td>
		</tr>
	<!-- ENDIF -->
<!-- BEGINELSE -->
	<tr>
		<td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
	</tr>
<!-- END forumrow -->
</table>

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:11
von Huchinotte
TammY hat geschrieben:nein das kommt da nirgends vor, meinte die style vorschau.

http://demo.phpbb3styles.net/CoDFaction
Ich kenne jetzt den Aufbau und so des styles nicht aber du könntest folgendes versuchen. Das orginal Icon aus dem phpbb Paket hochladen
öffne template/forumlist_body und suche

Code: Alles auswählen

{forumrow.LAST_POSTER_FULL}
dannach einfügen

Code: Alles auswählen

<a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> 
öffne imageset/imageset.cfg und suche:

Code: Alles auswählen

img_icon_topic_latest
sollte es das geben musst du schauen was dahinter angegeben ist. Sollte dann normalerweise so aussehen

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.xxx*yy*zz
wobei die x für dateiformat (gif, png etc) stehen und die y und z für breite und höhe des bildes.

Sollte

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.xxx*yy*zz
nicht vorhanden sein füge es ein nach

Code: Alles auswählen

img_icon_topic_attach
Hoffe das funktioniert so hab mit subsilver nicht sehr viel am Hut ... auf jedenfall einen Versuch wert. Ach ja cache vom style leeren (Grafiksammlung, template etc.)

Gruß Huch


Edit: alternativ könntest du auch den Text "Last post by:" als Link benutzen würde dann so aussehen:

Code: Alles auswählen

<a href="{forumrow.U_LAST_POST}">Last post by:</a>

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:17
von winnetou
Hallo,
dann versuche mal das:

Code: Alles auswählen

<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN forumrow -->
   <!-- IF forumrow.S_IS_CAT -->
      <tr>
         <td class="catdiv" colspan="5"><h2>{forumrow.FORUM_NAME}</h2></td>
      </tr>
   <!-- ELSEIF forumrow.S_IS_LINK -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
         </td>
         <!-- IF forumrow.CLICKS -->
            <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
         <!-- ELSE -->
            <td class="row2" colspan="3" align="center">&nbsp;</td>
         <!-- ENDIF -->
      </tr>
   <!-- ELSE -->
      <!-- IF forumrow.S_NO_CAT -->
         <tr>
            <td class="catdiv" colspan="2"><h4>{L_FORUM}</h4></td>
         </tr>
      <!-- ENDIF -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.MODERATORS -->
               <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
               <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
         </td>
         <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
         <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
         <td class="row2 listlast" align="center" nowrap="nowrap">
            <!-- IF forumrow.LAST_POST_TIME -->
               <p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
               <p class="topicdetails">Last post by: {forumrow.LAST_POSTER_FULL}
               <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a><!-- ENDIF -->
			   </p>
            <!-- ELSE -->
               <p class="topicdetails">{L_NO_POSTS}</p>
            <!-- ENDIF -->
         </td>
      </tr>
   <!-- ENDIF -->
<!-- BEGINELSE -->
   <tr>
      <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
   </tr>
<!-- END forumrow -->
</table>
Aber Bitte vorher eine Sicherung der Datei!

OK vorgänger war schneller :wink:

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:19
von TammY
Huchinotte hat geschrieben: öffne imageset/imageset.cfg und suche:

Code: Alles auswählen

img_icon_topic_latest
sollte es das geben musst du schauen was dahinter angegeben ist. Sollte dann normalerweise so aussehen

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.xxx*yy*zz
wobei die x für dateiformat (gif, png etc) stehen und die y und z für breite und höhe des bildes.

Sollte

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.xxx*yy*zz
nicht vorhanden sein füge es ein nach

Code: Alles auswählen

img_icon_topic_attach
Hoffe das funktioniert so hab mit subsilver nicht sehr viel am Hut ... auf jedenfall einen Versuch wert. Ach ja cache vom style leeren (Grafiksammlung, template etc.)

Gruß Huch

Diesen Code bei imagset hab ich drin, jedoch nicht das was danach kommt mit der größe ect. Das attach habe ich aber vor dem code stehen, soll ich es dennoch nochmals einfügen?

Code: Alles auswählen

img_icon_topic_attach = icon_topic_attach.gif*18*14
img_icon_topic_latest = 
img_icon_topic_newest = 
img_icon_topic_reported = icon_topic_reported.png*20*20
img_icon_topic_unapproved = icon_topic_unapproved.png*20*20

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:22
von TammY
winnetou hat geschrieben:Hallo,
dann versuche mal das:

Code: Alles auswählen

<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN forumrow -->
   <!-- IF forumrow.S_IS_CAT -->
      <tr>
         <td class="catdiv" colspan="5"><h2>{forumrow.FORUM_NAME}</h2></td>
      </tr>
   <!-- ELSEIF forumrow.S_IS_LINK -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
         </td>
         <!-- IF forumrow.CLICKS -->
            <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
         <!-- ELSE -->
            <td class="row2" colspan="3" align="center">&nbsp;</td>
         <!-- ENDIF -->
      </tr>
   <!-- ELSE -->
      <!-- IF forumrow.S_NO_CAT -->
         <tr>
            <td class="catdiv" colspan="2"><h4>{L_FORUM}</h4></td>
         </tr>
      <!-- ENDIF -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.MODERATORS -->
               <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
               <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
         </td>
         <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
         <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
         <td class="row2 listlast" align="center" nowrap="nowrap">
            <!-- IF forumrow.LAST_POST_TIME -->
               <p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
               <p class="topicdetails">Last post by: {forumrow.LAST_POSTER_FULL}
               <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a><!-- ENDIF -->
			   </p>
            <!-- ELSE -->
               <p class="topicdetails">{L_NO_POSTS}</p>
            <!-- ENDIF -->
         </td>
      </tr>
   <!-- ENDIF -->
<!-- BEGINELSE -->
   <tr>
      <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
   </tr>
<!-- END forumrow -->
</table>
Aber Bitte vorher eine Sicherung der Datei!

OK vorgänger war schneller :wink:


Deine Version habe ich gerade getestet, leider keine veränderung.
schaut noch immer genauso aus www.terenzi-board.de

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:26
von Huchinotte
TammY hat geschrieben: Diesen Code bei imagset hab ich drin, jedoch nicht das was danach kommt mit der größe ect. Das attach habe ich aber vor dem code stehen, soll ich es dennoch nochmals einfügen?

Code: Alles auswählen

img_icon_topic_attach = icon_topic_attach.gif*18*14
img_icon_topic_latest = 
img_icon_topic_newest = 
img_icon_topic_reported = icon_topic_reported.png*20*20
img_icon_topic_unapproved = icon_topic_unapproved.png*20*20
Nein du musst jetzt noch hinter

Code: Alles auswählen

img_icon_topic_latest = 
Das einfügen was ich geschrieben habe also

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.xxx*yy*zz
Die Werte xyz halt noch dem entsprechend ändern. Dann sollte der Code auch von winnetou funzen. Weil die Angabe zum img fehlt wird das auch nicht dargestellt. Denke ich.

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:30
von winnetou
Hallo,
mein code war nur der erste Teil von Huch....
Du musst natürlich zusätzlich in der imageset.cfg das auch hinzufügen:
Suche dieses:

Code: Alles auswählen

img_icon_topic_attach = icon_topic_attach.gif*18*14
Danach dieses einfügen

Code: Alles auswählen

img_icon_topic_latest = icon_topic_latest.gif*9*18

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:30
von TammY
Okay, hab das so gemacht wie bei dir beschrieben huchi, jedoch keine veränderung.

Edit: Also mein Imagset.cfg code schaut nun so aus

Code: Alles auswählen

#
# phpBB Imageset Configuration File
#
# @package phpBB3
# @copyright (c) 2005 phpBB Group 
# @license http://opensource.org/licenses/gpl-license.php GNU Public License 
#
#
# At the left is the name, please do not change this
# At the right the value is entered
# For on/off options the valid values are on, off, 1, 0, true and false
#
# Values get trimmed, if you want to add a space in front or at the end of
# the value, then enclose the value with single or double quotes. 
# Single and double quotes do not need to be escaped.
#
#

# General Information about this style
name = CoDFaction
copyright = &copy; Daniel St. Jules
version = 1.0.2

# Images 
img_site_logo = banner.jpg*140*956
img_upload_bar = upload_bar.gif*16*280
img_poll_left = poll_left.gif*12*4
img_poll_center = poll_center.gif*12*1
img_poll_right = poll_right.gif*12*4
img_icon_friend =
img_icon_foe =

img_forum_link = forum_link.png*50*50
img_forum_read = forum_old.png*50*50
img_forum_read_locked = forum_locked.png*50*50
img_forum_read_subforum = forum_old.png*50*50
img_forum_unread = forum_new.png*50*50
img_forum_unread_locked = forum_locked.png*50*50
img_forum_unread_subforum = forum_new.png*50*50

img_topic_moved = topic_moved.png*20*20

img_topic_read = topic_read.png*20*20
img_topic_read_mine = topic_read_mine.png*20*20
img_topic_read_hot = topic_read_hot.png*20*20
img_topic_read_hot_mine = topic_read_hot_mine.png*20*20
img_topic_read_locked = topic_read_locked.png*20*20
img_topic_read_locked_mine = topic_read_locked_mine.png*20*20

img_topic_unread = topic_unread.png*20*20
img_topic_unread_mine = topic_unread_mine.png*20*20
img_topic_unread_hot = topic_unread_hot.png*20*20
img_topic_unread_hot_mine = topic_unread_hot_mine.png*20*20
img_topic_unread_locked = topic_unread_locked.png*20*20
img_topic_unread_locked_mine = topic_unread_locked_mine.png*20*20

img_sticky_read = sticky_read.png*20*20
img_sticky_read_mine = sticky_read_mine.png*20*20
img_sticky_read_locked = sticky_read_locked.png*20*20
img_sticky_read_locked_mine = sticky_read_locked_mine.png*20*20
img_sticky_unread = sticky_unread.png*20*20
img_sticky_unread_mine = sticky_unread_mine.png*20*20
img_sticky_unread_locked = sticky_unread_locked.png*20*20
img_sticky_unread_locked_mine = sticky_unread_locked_mine.png*20*20

img_announce_read = announce_read.png*20*20
img_announce_read_mine = announce_read_mine.png*20*20
img_announce_read_locked = announce_read_locked.png*20*20
img_announce_read_locked_mine = announce_read_locked_mine.png*20*20
img_announce_unread = announce_unread.png*20*20
img_announce_unread_mine = announce_unread_mine.png*20*20
img_announce_unread_locked = announce_unread_locked*19*19
img_announce_unread_locked_mine = announce_unread_locked_mine.png*20*20

img_global_read = announce_read.png*20*20
img_global_read_mine = announce_read_mine.png*20*20
img_global_read_locked = announce_read_locked.png*20*20
img_global_read_locked_mine = announce_read_locked_mine.png*20*20
img_global_unread = announce_unread.png*20*20
img_global_unread_mine = announce_unread_mine.png*20*20
img_global_unread_locked = announce_unread_locked.png*20*20
img_global_unread_locked_mine = announce_unread_locked_mine.png*20*20

img_subforum_read = 
img_subforum_unread = 

img_pm_read = topic_read.png*20*20
img_pm_unread = topic_unread.png*20*20

img_icon_back_top =

img_icon_post_target = icon_post_target.gif*1*1
img_icon_post_target_unread = icon_post_target_unread.gif*1*1

img_icon_topic_attach = icon_topic_attach.gif*18*14
img_icon_topic_latest = icon_topic_latest.gif*9*18
img_icon_topic_newest = 
img_icon_topic_reported = icon_topic_reported.png*20*20
img_icon_topic_unapproved = icon_topic_unapproved.png*20*20


und der andere nun so

Code: Alles auswählen

    <table class="tablebg" cellspacing="1" width="100%">
    <!-- BEGIN forumrow -->
       <!-- IF forumrow.S_IS_CAT -->
          <tr>
             <td class="catdiv" colspan="5"><h2>{forumrow.FORUM_NAME}</h2></td>
          </tr>
       <!-- ELSEIF forumrow.S_IS_LINK -->
          <tr>
             <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
             <td class="row1">
                <!-- IF forumrow.FORUM_IMAGE -->
                   <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
                <!-- ENDIF -->
                <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
                <p class="forumdesc">{forumrow.FORUM_DESC}</p>
             </td>
             <!-- IF forumrow.CLICKS -->
                <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
             <!-- ELSE -->
                <td class="row2" colspan="3" align="center">&nbsp;</td>
             <!-- ENDIF -->
          </tr>
       <!-- ELSE -->
          <!-- IF forumrow.S_NO_CAT -->
             <tr>
                <td class="catdiv" colspan="2"><h4>{L_FORUM}</h4></td>
             </tr>
          <!-- ENDIF -->
          <tr>
             <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
             <td class="row1">
                <!-- IF forumrow.FORUM_IMAGE -->
                   <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div>
                <!-- ENDIF -->
                <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
                <p class="forumdesc">{forumrow.FORUM_DESC}</p>
                <!-- IF forumrow.MODERATORS -->
                   <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
                <!-- ENDIF -->
                <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
                   <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
                <!-- ENDIF -->
             </td>
             <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
             <td class="row2 listsecond" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
             <td class="row2 listlast" align="center" nowrap="nowrap">
                <!-- IF forumrow.LAST_POST_TIME -->
                   <p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
                   <p class="topicdetails">Last post by: {forumrow.LAST_POSTER_FULL}
                   <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a><!-- ENDIF -->
                </p>
                <!-- ELSE -->
                   <p class="topicdetails">{L_NO_POSTS}</p>
                <!-- ENDIF -->
             </td>
          </tr>
       <!-- ENDIF -->
    <!-- BEGINELSE -->
       <tr>
          <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
       </tr>
    <!-- END forumrow -->
    </table>

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:39
von winnetou
ändere das mal :

Code: Alles auswählen

img_icon_topic_attach = icon_topic_attach.gif*18*14
img_icon_topic_latest = icon_topic_latest.gif*9*18
img_icon_topic_newest =
img_icon_topic_reported = icon_topic_reported.png*20*20
img_icon_topic_unapproved = icon_topic_unapproved.png*20*20
In

Code: Alles auswählen

img_icon_topic_attach = icon_topic_attach.gif*18*14
img_icon_topic_latest = icon_topic_latest.gif*9*18
img_icon_topic_newest = icon_topic_newest.gif*9*18
img_icon_topic_reported = icon_topic_reported.gif*20*20
img_icon_topic_unapproved = icon_topic_unapproved.gif*20*20
Danach im ACP unter Styles, Templates,Themen Grafiksammlungen aktualisieren und unter Allgemein den Cache löschen!

Re: Neue beiträge in der Übersicht

Verfasst: 18.03.2010 13:41
von Huchinotte
Hi ............

hm keine Ahnung sollte eigentlich funktionieren. Wie ist denn der Link zum dem icon? Deine Seite läuft in Frames deshalb kann ich auch das Icon unter http://www.terenzi-board.de/style/CoDFa ... latest.gif nicht erreichen.

Huch

Edit: Habs .... hast du auch die komplette cache des Styles geleert?