CA Vintage

Locked
User avatar

Topic author
Marc
Dev
Posts: 2504
Joined: 17. July 2008 21:08
phpBB.de User: marc1706
phpBB.com User: Marc
Location: Clausthal-Zellerfeld / München
Contact:

CA Vintage

Post by Marc »

Style: CA Vintage
Style Version: 1.0.5
phpBB Version: 3.0.8
Board3Portal Version: 1.0.4 / 1.0.5 / 1.0.6

Style Download: http://demo.phpbb3styles.net/CA+Vintage
Screenshot:
ca-vintage-1.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:
(please copy this files from our B3P download package)


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

open: styles/ca_vintage/template/overall_header.html
find:

Code: Select all

	<div id="page-header">
Before add:

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
find:

Code: Select all

<li class="icon-home"><!-- IF .navlinks --><span class="home-extra"><!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <!-- IF navlinks.S_LAST_ROW --></span><!-- ENDIF --><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>
Inline find:

Code: Select all

<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
Inline add before:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
find:

Code: Select all

            <div class="block-clear"></div>
            </div></div>
            <div class="block-footer"><span></span><div></div></div>
		</div>
	</div>
add after:

Code: Select all

<!-- ENDIF -->

Open: styles/ca_vintage/template/overall_footer.html
find:

Code: Select all

                    <li class="leftside"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
Inline find:

Code: Select all

<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
Inline add before:

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187;<!-- ENDIF -->
Open: styles/ca_vintage/template/portal/block/news_compact.html
find:

Code: Select all

{$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}
replace with:

Code: Select all

{$C_BLOCK_H_L}
	<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{L_LATEST_NEWS}</dt>
{$C_BLOCK_H_R}
<ul class="topiclist">
			<li class="header">
				<dl class="icon">
				<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>
				</dl>
			</li>
</ul>
Open: styles/ca_vintage/theme/stylesheet.css
find:

Code: Select all

@import url("colours.css");
add after:

Code: Select all

@import url("portal.css");
Open: styles/ca_vintage/theme/portal.css
find:

Code: Select all

background-image: url("{T_THEME_PATH}/images/portal/arrowbullet.gif");
replace with:

Code: Select all

background-image: url("{T_THEME_PATH}/images/post_show.gif");
open: styles/ca_vintage/template/portal/_block_config.html
replace with: (click the link to get the code)
_block_config.html for CA Vintage

DIY instructions: Knowledge Base: Changes to forums styles
Schritt für Schritt Anleitung in
[+] Deutsch
Als erstes musst du das Style downloaden und Installieren. Wenn das geschafft ist und das Style läuft, kannst du das Portal für das Style nach folgender Anleitung installieren:
(kopiere diese Dateien bitte aus dem B3P download-paket.)

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

Öffne: styles/ca_vintage/template/overall_header.html
Finde:

Code: Select all

	<div id="page-header">
Davor einfügen:

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Finde:

Code: Select all

<li class="icon-home"><!-- IF .navlinks --><span class="home-extra"><!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <!-- IF navlinks.S_LAST_ROW --></span><!-- ENDIF --><a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>
In der Zeile finde:

Code: Select all

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

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
Finde:

Code: Select all

            <div class="block-clear"></div>
            </div></div>
            <div class="block-footer"><span></span><div></div></div>
		</div>
	</div>
Danach einfügen:

Code: Select all

<!-- ENDIF -->

Öffne: styles/ca_vintage/template/overall_footer.html
Finde:

Code: Select all

                    <li class="leftside"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
In der Zeile finde:

Code: Select all

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

Code: Select all

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187;<!-- ENDIF -->
Öffne: styles/ca_vintage/template/portal/block/news_compact.html
Finde:

Code: Select all

{$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}
Ersetze mit:

Code: Select all

{$C_BLOCK_H_L}
	<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{L_LATEST_NEWS}</dt>
{$C_BLOCK_H_R}
<ul class="topiclist">
			<li class="header">
				<dl class="icon">
				<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>
				</dl>
			</li>
</ul>
Öffne: styles/ca_vintage/theme/stylesheet.css
Finde:

Code: Select all

@import url("colours.css");
Danach einfügen:

Code: Select all

@import url("portal.css");
Öffne: styles/ca_vintage/theme/portal.css
Finde:

Code: Select all

background-image: url("{T_THEME_PATH}/images/portal/arrowbullet.gif");
Ersetze mit:

Code: Select all

background-image: url("{T_THEME_PATH}/images/post_show.gif");
Öffne: styles/absolution/template/portal/_block_config.html
Ersetze mit: (folge dem Link um zum Code zu gelangen)
_block_config.html für CA Vintage

Manuelle Vorgänge: Knowledge Base: Änderungen an den Styles Dateien
Last edited by archivar on 12. April 2011 19:08, edited 2 times in total.
Reason: Screenshot hinzugefügt
Locked

Return to “board3 Portal v1.0.4 / v1.0.5 / v1.0.6 - Styles”