Page 1 of 1

Supernova für phpBB v. 3.0.7

Posted: 25. July 2010 23:55
by archivar
Beitrag für die Anleitung entfernt.
Überarbeitete Anleitung siehe hier:
viewtopic.php?f=47&t=3841

Re: Supernova v. 3.0.7

Posted: 26. July 2010 01:47
by Marc
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 ;)

Re: Supernova v. 3.0.7

Posted: 26. July 2010 09:34
by diastasi
If you want to show the title of the center blocks as the Supernova forums title change in all center blocks:
this

Code: Select all

<dt>{L_XXXXXXXXXX}</dt>
with this

Code: Select all

<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_XXXXXXXXXX}</span></div></dt>
for example:

Code: Select all

<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_LATEST_NEWS}</span></div></dt>
See a sample: http://thraki.info

Re: Supernova v. 3.0.7

Posted: 1. August 2010 22:12
by archivar
diastasi wrote:If you want to show the title of the center blocks as the Supernova forums title change in all center blocks:
this

Code: Select all

<dt>{L_XXXXXXXXXX}</dt>
with this

Code: Select all

<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_XXXXXXXXXX}</span></div></dt>
for example:

Code: Select all

<dt><div class="cat-name" style="margin:-4px 0 -2px 0;"><span>{L_LATEST_NEWS}</span></div></dt>
See a sample: http://thraki.info
Hello diastasi,
thank you for your contribution. :)
I have included this contribution in the new instructions.
Revised instructions see here.

Re: Supernova v. 3.0.7

Posted: 14. November 2010 03:27
by rappelkiste_src
archivar wrote:Hello diastasi,
thank you for your contribution. :)
I have included this contribution in the new instructions.
Revised instructions see here.
Das klappt ganz gut. Vielen Dank.
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

Re: Supernova v. 3.0.7

Posted: 14. November 2010 15:45
by archivar
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,
Hallo,
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}
und ersetze damit:

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}
rappelkiste_src wrote:oder die GalleryBox fürs das Portal.
Meinst Du die Galerie im Zentrum des Portals?
Wenn ja dann gib mir einen Testzugang zu deinem Board.

Re: Supernova für phpBB v. 3.0.7

Posted: 14. November 2010 17:06
by rappelkiste_src
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

Code: Select all

<dt><!-- IF imageblock.U_BLOCK --><a href="{imageblock.U_BLOCK}">{imageblock.BLOCK_NAME}</a><!-- ELSE -->{imageblock.BLOCK_NAME}<!-- ENDIF --></dt>
und ersetze mit:

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>
Dann passt dies auch.
Image

Danke und Gruß
Michael