Beitrag für die Anleitung entfernt.
Überarbeitete Anleitung siehe hier: viewtopic.php?f=47&t=3841
Supernova für phpBB v. 3.0.7
-
Topic author - Portal Professional
- Posts: 1959
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Supernova für phpBB v. 3.0.7
Last edited by archivar on 1. August 2010 22:17, edited 4 times in total.
Reason: Beitrag für die Anleitung entfernt, wegen Überarbeiteter Anleitung
Reason: Beitrag für die Anleitung entfernt, wegen Überarbeiteter Anleitung
V.G. archivar
sorry for my bad english
sorry for my bad english
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Supernova v. 3.0.7
Ich hab die Einleitung für die Englische Anleitung leicht überarbeitet, damit es da nicht zu Missverständnissen kommt.
Ansonsten muss ich sagen: Danke für deine Mühen
Ansonsten muss ich sagen: Danke für deine Mühen
Re: Supernova v. 3.0.7
If you want to show the title of the center blocks as the Supernova forums title change in all center blocks:
this
with this
for example:
See a sample: http://thraki.info
this
Code: Select all
<dt>{L_XXXXXXXXXX}</dt>
Code: Select all
<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_XXXXXXXXXX}</span></div></dt>
Code: Select all
<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_LATEST_NEWS}</span></div></dt>
-
Topic author - Portal Professional
- Posts: 1959
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: Supernova v. 3.0.7
Hello diastasi,diastasi wrote:If you want to show the title of the center blocks as the Supernova forums title change in all center blocks:
thiswith thisCode: Select all
<dt>{L_XXXXXXXXXX}</dt>
for example:Code: Select all
<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_XXXXXXXXXX}</span></div></dt>
See a sample: http://thraki.infoCode: Select all
<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_LATEST_NEWS}</span></div></dt>
thank you for your contribution.
I have included this contribution in the new instructions.
Revised instructions see here.
V.G. archivar
sorry for my bad english
sorry for my bad english
Re: Supernova v. 3.0.7
Das klappt ganz gut. Vielen Dank.archivar wrote:Hello diastasi,
thank you for your contribution.
I have included this contribution in the new instructions.
Revised instructions see here.
Was muss man den zusätzlich ändern, um die Überschrift, welche einen Link enthält vor dem neuen weißen Hintergrund sehen zu können?
Als Beispiel wäre hier die Box "Wer ist online?" zu erwähnen, oder die GalleryBox fürs das Portal.
Vielen Dank und Gruß Michael
-
Topic author - Portal Professional
- Posts: 1959
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: Supernova v. 3.0.7
Hallo,rappelkiste_src wrote: Was muss man den zusätzlich ändern, um die Überschrift, welche einen Link enthält vor dem neuen weißen Hintergrund sehen zu können?
Als Beispiel wäre hier die Box "Wer ist online?" zu erwähnen,
für den Style Supernova
suche in root/styles/supernova/template/portal/block/whois_online.html
Code: Select all
{$C_BLOCK_H_L}<dt><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></dt>{$C_BLOCK_H_R}
Code: Select all
{$C_BLOCK_H_L}<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}"><span>{L_WHO_IS_ONLINE}</span></a><!-- ELSE --><span>{L_WHO_IS_ONLINE}</span><!-- ENDIF --></div></dt>{$C_BLOCK_H_R}
Meinst Du die Galerie im Zentrum des Portals?rappelkiste_src wrote:oder die GalleryBox fürs das Portal.
Wenn ja dann gib mir einen Testzugang zu deinem Board.
V.G. archivar
sorry for my bad english
sorry for my bad english
Re: Supernova für phpBB v. 3.0.7
Danke archivar,
deine Lösung passt perfekt für "Wer ist Online?".
Genau so sollte es aussehen und auch funktionieren.
Für den Gallery-Block habe folgendes dank deiner Hilfe geändert.
suche /root/styles/supernova/template/gallery/imageblock_body.html
und ersetze mit:
Dann passt dies auch.
Danke und Gruß
Michael
deine Lösung passt perfekt für "Wer ist Online?".
Genau so sollte es aussehen und auch funktionieren.
Für den Gallery-Block habe folgendes dank deiner Hilfe geändert.
suche /root/styles/supernova/template/gallery/imageblock_body.html
Code: Select all
<dt><!-- IF imageblock.U_BLOCK --><a href="{imageblock.U_BLOCK}">{imageblock.BLOCK_NAME}</a><!-- ELSE -->{imageblock.BLOCK_NAME}<!-- ENDIF --></dt>
Code: Select all
<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><!-- IF imageblock.U_BLOCK --><a href="{imageblock.U_BLOCK}"><span>{imageblock.BLOCK_NAME}</span></a><!-- ELSE --><span>{imageblock.BLOCK_NAME}</span><!-- ENDIF --></div></dt>
Danke und Gruß
Michael