DarkFX (Base: prosilver)

Locked
User avatar

Topic author
Kirk
Dev
Posts: 1936
Joined: 27. July 2010 18:02
phpBB.de User: Kirk
Contact:

DarkFX (Base: prosilver)

Post by Kirk »

Style: DarkFX
Style Base: prosilver
Style Version: 1.0.1
phpBB Version: 3.0.12
Board3Portal Version: 2.0.2

Style Download: https://www.phpbb.com/customise/db/style/darkfx/
Screenshot:
darkfx.jpg
Step by Step Guide in
[+] English
First you need to download and install this Style. If it works, you can install the Portal for this Style as per description:
From the B3P-download-package you must first perform the install.xml.

copy: root/styles/prosilver/template/portal/*.*
to: root/styles/darkfx/template/portal/*.*
copy: root/styles/prosilver/theme/portal.css
to: root/styles/darkfx/theme/portal.css
copy: root/styles/prosilver/theme/images/portal/*.*
to: root/styles/darkfx/theme/images/portal/*.*

open: root/styles/darkfx/template/overall_footer.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
open: root/styles/darkfx/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<div class="navmenu">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<div class="wrap2" style="width: {$DARKFX_BOARD_WIDTH};"><div class="navlink"><ul>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.

Code: Select all

				<!-- IF U_PORTAL --><li><a href="{U_PORTAL}">
					<strong>{L_PORTAL}</strong>
				</a></li><!-- ENDIF -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

</ul></div></div>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.

Code: Select all

<!-- ENDIF -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<div class="cat-head">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<div class="cat-title"><span><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></span></div><!-- BEGIN navlinks --><div class="cat-title" style="margin-left: 5px;"><span><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span></div><!-- END navlinks -->
Replace with
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select all

<div class="cat-title"><span><!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a>&nbsp;&nbsp;&nbsp;&nbsp;<!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></span></div><!-- BEGIN navlinks --><div class="cat-title" style="margin-left: 5px;"><span><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span></div><!-- END navlinks -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<a name="start_here"></a>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- ENDIF -->

open: root/styles/darkfx/theme/stylesheet.css
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

@import url("colours.css");
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.

Code: Select all

@import url("portal.css");
additional changes: no
DIY instructions: Knowledge Base: Changes to forums styles
Schritt für Schritt Anleitung in
[+] Deutsch
Als erstes musst du den Style downloaden und Installieren. Wenn das geschafft ist und der Style läuft, kannst du das Portal für diesen Style nach folgender Anleitung installieren:
Aus dem B3P-download-paket must Du zuerst die install.xml ausführen.

kopiere: root/styles/prosilver/template/portal/*.*
nach: root/styles/darkfx/template/portal/*.*
kopiere: root/styles/prosilver/theme/portal.css
nach: root/styles/darkfx/theme/portal.css
kopiere: root/styles/prosilver/theme/images/portal/*.*
nach: root/styles/darkfx/theme/images/portal/*.*

Öffne: root/styles/darkfx/template/overall_footer.html
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
In der Zeile davor einfügen

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
Öffne: root/styles/darkfx/template/overall_header.html
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<div class="navmenu">
Davor einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile vor den/der gerade gesuchten eingefügt.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<div class="wrap2" style="width: {$DARKFX_BOARD_WIDTH};"><div class="navlink"><ul>
Danach einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile nach den/der gerade gesuchten eingefügt.

Code: Select all

				<!-- IF U_PORTAL --><li><a href="{U_PORTAL}">
					<strong>{L_PORTAL}</strong>
				</a></li><!-- ENDIF -->
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

</ul></div></div>
Danach einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile nach den/der gerade gesuchten eingefügt.

Code: Select all

<!-- ENDIF -->
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<div class="cat-head">
Davor einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile vor den/der gerade gesuchten eingefügt.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<div class="cat-title"><span><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></span></div><!-- BEGIN navlinks --><div class="cat-title" style="margin-left: 5px;"><span><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span></div><!-- END navlinks -->
Ersetzen mit
Hinweis: Die genannten Zeile(n) werden mit den/der folgenden ersetzt.

Code: Select all

<div class="cat-title"><span><!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a>&nbsp;&nbsp;&nbsp;&nbsp;<!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></span></div><!-- BEGIN navlinks --><div class="cat-title" style="margin-left: 5px;"><span><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a></span></div><!-- END navlinks -->
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<a name="start_here"></a>
Davor einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile vor den/der gerade gesuchten eingefügt.

Code: Select all

<!-- ENDIF -->

Öffne: root/styles/darkfx/theme/stylesheet.css
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

@import url("colours.css");
Danach einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile nach den/der gerade gesuchten eingefügt.

Code: Select all

@import url("portal.css");
zusätzliche Änderungen: nein
Manuelle Vorgänge: Knowledge Base: Änderungen an den Styles Dateien
Gruß Udo
Locked

Return to “Released Styled v2.0.0b1 / v2.0.0 / v2.0.1 / v2.0.2”