Page 1 of 2

[gelöst]Beitragssymbole überlagern sich

Posted: 13. June 2010 20:34
by StingerWolf
Deine Portal Version: 1.0.5
Typ Deines phpBB Forums: Standard phpBB3
MODs installiert: Ja
Dein Wissensstand: Einsteiger
Link zu Deinem Forum: http://www.benelliforum.de

PHP Version: 3.0.7-PL1
MySQL Version: 5.1.47-0.dotdeb.0

Was hast Du gemacht, bevor das Problem aufgetreten ist?
gabs von Anfang an

Was hast Du bereits versucht um das Problem zu lösen?
gegoogelt bis zum umfallen und auch hier im Forum gestöbert

Fehlerbeschreibung und Nachricht
Hallo zusammen,

Habe das Beitragssymbolüberlagerungsproblem beim Prosilver Style, das Problem scheint schon bekannt zu sein, bloß eine richtige Lösung hab ich nirgends gefunden und wenn dann nur für die Forenansicht (hab ich bereits angewendet und funktioniert super) aber nicht fürs Portal :( , hoffe mal das ihr mir weiterhelfen könnt.

Hier ein Screenshot:

Image

Mein Gedanke war evtl. eine zusätzliche Spalte einzufügen damit die Beitragssymbole wie im subsilverstyle dargestellt werden können. Glaube aber gelesen zu haben dass das nicht wirklich machbar ist, falls doch wäre der genaue Lösungsweg super da ich noch Anfänger in der ganzen PHP Sache bin.
Alternativ würde es auch reichen, das die Beitragssymbole von den Themensymbolen sauber getrennt sind als letzten Weg würde es auch gehen, für das Portal im Prosilverstyle die Beitragssymbole nicht anzeigen zu lassen, dies sollte aber dann NUR für den Prosilver Style gelten.

Wäre spitzenmäßig wenn einer von euch mir weiterhelfen könnte. Vielen Dank

Re: Beitragssymbole überlagern sich

Posted: 13. June 2010 23:20
by Marc
Welche Anleitung hast du denn für die Foren-Übersicht durchgeführt. Wenn ich die hätte könnte ich dir auch sagen was man ändern muss. ;)

Re: Beitragssymbole überlagern sich

Posted: 14. June 2010 00:12
by StingerWolf
bin schon am Suchen, das wird etwas dauern da das in irgendeinem Thread auf irgendeiner Seite versteckt war. Die Lösung sieht auf jedenfall so aus:

Image

evtl. hilft das schon mal etwas. Ich kann mich nur erinnern dass ich einen längeren "Baustein" aus dem Thread kopiert hatte und in meiner Originaldatei einen kurzen Baustein dafür rausschmeissen musste Welche Datei das betraf und wie der Befehl aussah, keine Ahnung :shock: bin da noch Anfänger sodass ich schon froh bin wenn ich das hinbekomme was andere sagen bzw. schreiben :)
Ich kuck mal evtl. hab ich mir irgendwo ein Lesezeichen eingerichtet um den Beitrag wieder zu finden.

Re: Beitragssymbole überlagern sich

Posted: 14. June 2010 00:29
by StingerWolf
Ist zwar nicht dass was ich damals angewendet habe aber das wäre für meine Zwecke perfekt, allerdings sind meine Symbole etwas größer keine Ahnung ob die Lösung dann für mich brauchbar ist?

Reposition the standard topic icons for prosilver.
open styles/prosilver/template/viewforum_body.html

find:

Code: Select all

<dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
replace with:

Code: Select all

<dl class="iconforums" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
open styles/prosilver/theme/content.css
find:

Code: Select all

dl.icon {
	min-height: 35px;
	background-position: 10px 50%;		/* Position of folder icon */
	background-repeat: no-repeat;
}

dl.icon dt {
	padding-left: 45px;					/* Space for folder icon */
	background-repeat: no-repeat;
	background-position: 5px 95%;		/* Position of topic icon */
}
add after:

Code: Select all

dl.iconforums {
	min-height: 35px;
	background-position: 10px 50%;		
	background-repeat: no-repeat;
}

dl.iconforums dt {
	padding-left: 60px;					
	background-repeat: no-repeat;
	background-position: 40px 65%;		
}
Before:
Image
and after:
Image
Refresh template and theme for prosilver(based styles)[/quote]

Re: Beitragssymbole überlagern sich

Posted: 14. June 2010 07:51
by StingerWolf
so ich bin jetzt etwas schlauer, hab die Änderung in meinem Dateisystem style/prosilver/template/viewforum_body.html gefunden:

orginalcode:

Code: Select all

<li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
			<dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
				<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>
					<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
					<!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
					<!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
					<!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
				</dt>
korrigierter Code damit die Forenübersicht so aussieht wie aktuell bei mir:

Code: Select all

<li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
			<dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
				<dt 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>
               <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
               <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
               <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
               <!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}">&nbsp;<!-- ENDIF -->
               <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {topicrow.FIRST_POST_TIME}
            </dt>
Hoffe mal das hilft dir weiter Marc um für mich eine Lösung zu finden.

Re: Beitragssymbole überlagern sich

Posted: 17. June 2010 00:50
by StingerWolf
hat keiner eine Lösung? oder bin ich einfach zu ungeduldig? :shock:

Re: Beitragssymbole überlagern sich

Posted: 18. June 2010 00:31
by archivar
Versuch mal auch die root/styles/prosilver/template/portal/block/news_compact.html
zu ändern.

Re: Beitragssymbole überlagern sich

Posted: 19. June 2010 17:32
by StingerWolf
was muss ich denn da genau ändern?

das steht in der Datei

Code: Select all

<!--version $Id: news_compact.html 521 2009-08-26 20:59:19Z christian_n $ //-->
<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
{$C_BLOCK_H_L}<dt>News</dt>{$C_BLOCK_H_R}
	<div class="post bg2" style="margin-bottom: 0px">
		<div class="inner"><span class="portal-corners-top-inner"></span>
			<span style="text-align: center;"><strong>Keine News</strong></span>
		<span class="portal-corners-bottom-inner"></span></div>
	</div>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ELSE  -->
<!-- IF news_row.S_FIRST_ROW  -->
<a name="n"></a>
{$C_BLOCK_H_L}
	<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{L_LATEST_NEWS}</dt>
	<!-- IF S_DISPLAY_NEWS_RVS -->
		<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
		<dd class="views" style="width: 11%">{L_VIEWS}</dd>
	<!-- ENDIF -->
	<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>

{$C_BLOCK_H_R}
<ul class="topiclist topics">
<!-- ENDIF -->
	<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
		<dl class="icon" style="background-image: url({news_row.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> 	
			<dt style="<!-- IF S_DISPLAY_NEWS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF news_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{news_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF news_row.S_UNREAD_TOPIC --><a href="{news_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF news_row.ATTACH_ICON_IMG -->{news_row.ATTACH_ICON_IMG} <!-- ENDIF --><!-- IF news_row.S_POLL --><strong>{L_POLL}: </strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}" title="{news_row.TITLE}" class="topictitle">{news_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> &bull; <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->
				<!-- IF news_row.PAGINATION --><strong class="pagination"><span>{news_row.PAGINATION}</span></strong><!-- ENDIF -->
					<br />{L_POSTED} {L_POST_BY_AUTHOR} {news_row.POSTER_FULL} &raquo; {news_row.TIME}
				<!-- IF news_row.FORUM_NAME -->
					<br />{L_FORUM}: <a href="{news_row.U_VIEWFORUM}" style="font-weight: bold;">{news_row.FORUM_NAME}</a>
				<!-- ENDIF -->
				<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news_row.FORUM_NAME -->&bull; <!-- ENDIF -->{L_REPLIES}: <strong>{news_row.REPLIES}</strong>  &bull; {L_VIEWS}: <strong>{news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
			</dt>
			<!-- IF S_DISPLAY_NEWS_RVS -->
				<dd class="posts" style="width: 11%">{news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
				<dd class="views" style="width: 11%">{news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
			<!-- ENDIF -->
			<dd class="lastpost" style="width: 25%"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {news_row.USERNAME_FULL_LAST} <!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
				{news_row.LAST_POST_TIME}</span>
			</dd>
		</dl>
	</li>
<!-- IF news_row.S_LAST_ROW -->
    <!-- IF NP_PAGINATION or TOTAL_NEWS -->
		<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF -->">
			<div class="topic-actions">
				<div class="pagination">
					{TOTAL_NEWS}
					<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> &bull; {NP_PAGE_NUMBER} &bull; <span>{NP_PAGINATION}</span><!-- ELSE --> &bull; {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF --> &nbsp;
				</div>
			</div>
		</li>
    <!-- ENDIF -->
	</ul>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->
<!-- ENDIF -->
<!-- END news_row -->

Re: Beitragssymbole überlagern sich

Posted: 19. June 2010 18:54
by archivar
In root/styles/prosilver/template/portal/block/news_compact.html:
Suche und entferne:

Code: Select all

style="<!-- IF S_DISPLAY_NEWS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF news_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" 
suche:

Code: Select all

<!-- IF news_row.ATTACH_ICON_IMG -->{news_row.ATTACH_ICON_IMG} <!-- ENDIF -->
Edit, so ist es Valide:
füge in der Zeile danach ein:

Code: Select all

<!-- IF news_row.TOPIC_ICON_IMG and S_TOPIC_ICONS --><img src="{T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}" alt="" /><!-- ENDIF -->

Re: Beitragssymbole überlagern sich

Posted: 19. June 2010 22:20
by archivar
StingerWolf wrote:so ich bin jetzt etwas schlauer, hab die Änderung in meinem Dateisystem style/prosilver/template/viewforum_body.html gefunden:
korrigierter Code damit die Forenübersicht so aussieht wie aktuell bei mir:

Code: Select all

<li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
			<dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
				<dt 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>
               <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
               <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
               <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
               <!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}">&nbsp;<!-- ENDIF -->
               <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {topicrow.FIRST_POST_TIME}
            </dt>
Hoffe mal das hilft dir weiter Marc um für mich eine Lösung zu finden.
Das bitte austauschen damit es auch Valide ist:

Code: Select all

    <li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
             <dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
                <dt title="{topicrow.TOPIC_FOLDER_IMG_ALT}"><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}" alt="" /><!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
                   <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
                   <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
                   <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
                   <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {topicrow.FIRST_POST_TIME}
                </dt>

Re: Beitragssymbole überlagern sich

Posted: 20. June 2010 12:50
by StingerWolf
danke für deine Hilfe ich denke das geht schon in die richtige Richtung. Hier mal ein Screenshot wie es aktuell aussieht. Die Bilder sind voneinander Getrennt allerdings ist der Rest leicht verschoben

Image

hast du eine Idee wie ich das "gerade" bekomme? Evtl. fällt dir auch was wegen den Änderungen für die globalen Ankündigungen ein? :oops:

Re: Beitragssymbole überlagern sich

Posted: 20. June 2010 15:11
by StingerWolf
wenn ich die viewforumänderung durchführe hab ich die Symbole doppelt in der Themenübersicht des jeweiligen Forums. Einmal bei Themen und einmal bei letzter Beitrag anzeigen ohne die Viewforumänderung bleibts in der Themenübersicht des jeweiligen Forums "richtig" dargestellt.
Im Portal bleibts wie auf dem letzten Screenshot von mir.

Re: Beitragssymbole überlagern sich

Posted: 20. June 2010 15:40
by archivar
StingerWolf wrote:wenn ich die viewforumänderung durchführe hab ich die Symbole doppelt in der Themenübersicht des jeweiligen Forums. Einmal bei Themen und einmal bei letzter Beitrag anzeigen ohne die Viewforumänderung bleibts in der Themenübersicht des jeweiligen Forums "richtig" dargestellt.
Im Portal bleibts wie auf dem letzten Screenshot von mir.
Prüfe mal ob Du dort

Code: Select all

{topicrow.TOPIC_ICON_IMG}
2x drinne hast.
StingerWolf wrote:danke für deine Hilfe ich denke das geht schon in die richtige Richtung. Hier mal ein Screenshot wie es aktuell aussieht. Die Bilder sind voneinander Getrennt allerdings ist der Rest leicht verschoben-
hast du eine Idee wie ich das "gerade" bekomme?
Stell mal im ACP im Portal-Mod.
"Antworten" und "Zugriffe" in Extraspalten:
überall auf "NEIN".
StingerWolf wrote:Evtl. fällt dir auch was wegen den Änderungen für die globalen Ankündigungen ein? :oops:
Suche in root/styles/prosilver/template/portal/block/announcements_compact.html:

Code: Select all

			<dt style="<!-- IF S_DISPLAY_ANNOUNCEMENTS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF announcements_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{announcements_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{announcements_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF announcements_row.S_UNREAD_TOPIC --><a href="{announcements_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF announcements_row.ATTACH_ICON_IMG -->{announcements_row.ATTACH_ICON_IMG} <!-- ENDIF --><a href="{announcements_row.U_VIEW_COMMENTS}" title="{announcements_row.TITLE}" class="topictitle">{announcements_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> &bull; <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->
und ersetze damit:

Code: Select all

			<dt title="{announcements_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF announcements_row.S_UNREAD_TOPIC --><a href="{announcements_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF announcements_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{announcements_row.TOPIC_ICON_IMG}" alt="" /><!-- ENDIF --><!-- IF announcements_row.ATTACH_ICON_IMG -->{announcements_row.ATTACH_ICON_IMG} <!-- ENDIF --><a href="{announcements_row.U_VIEW_COMMENTS}" title="{announcements_row.TITLE}" class="topictitle">{announcements_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> &bull; <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->
Sieh es dir mal auf meiner Seite an. Ich lass es mal 2 Tage dort so stehen.

Re: Beitragssymbole überlagern sich

Posted: 20. June 2010 17:14
by StingerWolf
DU BIST EIN GOTT :D

hab gerade gesehen dass wenn ich auf eigene Beiträge klicke dann sind die Bildchen noch überlagert scheint dann wieder ne andere Datei zu betreffen wo die selben Änderungen durchgeführt werden müssten. Falls du noch Lust hast wäre super, aber generell würde es so schon reichen, jetzt muss ich nur noch kucken warum der Prosilver Style mit Internet Explorer so "groß" dargestellt wird da ist dann alles "verzogen" wenn ich über die Browserfunktion "verkleinere" wird zwar alles "richtig" aber man kanns nicht mehr lesen weil zu klein. Aber das ist ein anderes Thema und betrifft bei mir nicht nur Portal sondern generell prosilver :cry: Der Style macht nur "Schwierigkeiten" :P
Subsilver und BlackPearl (template Subsilver) funktionieren hingegen super.

VIELEN VIELEN DANK ARCHIVAR FÜR DEINE HILFE!

Re: Beitragssymbole überlagern sich

Posted: 20. June 2010 18:02
by archivar
StingerWolf wrote: hab gerade gesehen dass wenn ich auf eigene Beiträge klicke dann sind die Bildchen noch überlagert scheint dann wieder ne andere Datei zu betreffen wo die selben Änderungen durchgeführt werden müssten.
suche in root/styles/prosilver/template/search_results.html:

Code: Select all

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

Code: Select all

<dt><!-- IF searchresults.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}" alt="" /><!-- ENDIF -->
Wenn Du generell Probleme mit prosilver oder phpBB hast wende dich bitte an phpBB.de.