Custom Subsilver Style portal install

Kein Support auf phpBB Styles direkt!
No support directly to phpBB Styles!


Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Custom Subsilver Style portal install

Post by Mordynak »

Your Portal Version: 2.0.1
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner

What have you done before the problem was there?


What have you already tryed to solve the problem?


Description and Message
Hi all. Just trying to install Board 3 Portal on an old subsilver style I've updated. Just not sure what to do with the overall header file.

I have the portal installed on my site and working on prosilver fine. Just having troubles with this particular style.

I'm not able to find anything its telling too on the portals subsilver style installation guide so I just don't know where to put things.

This is the overall header.

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
<head>
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>
<!-- IF S_ENABLE_FEEDS -->
	<!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
{META}

<!--
   phpBB style name: DarkFantasy
   Based on style:   subsilver2
   Original author:  Tom Beddard ( http://www.subBlue.com/ )
   Modified by:     Daniel St. Jules ( http://www.codfaction.com )

   NOTE: This page was generated by phpBB, the free open-source bulletin board package.
         The phpBB Group is not responsible for the content of this page and forum. For more information
         about phpBB please visit http://www.phpbb.com
-->

<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />
<!--[if IE]><link rel="stylesheet" href="{T_THEME_PATH}/ie.css" type="text/css" /><![endif]-->
<!--[if lte IE 6]>
<script defer type="text/javascript" src="{T_TEMPLATE_PATH}/pngfix.js"></script>
<link rel="stylesheet" href="{T_THEME_PATH}/ie6.css" type="text/css" />
<![endif]-->
<script type="text/javascript">
// <![CDATA[
<!-- IF S_USER_PM_POPUP and S_NEW_PM -->
	popup('{UA_POPUP_PM}', 400, 225, '_phpbbprivmsg');
<!-- ENDIF -->

function popup(url, width, height, name)
{
	if (!name)
	{
		name = '_popup';
	}

	window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
	return false;
}

function jumpto()
{
	var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
	var per_page = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';

	if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
	{
		if (base_url.indexOf('?') == -1)
		{
			document.location.href = base_url + '?start=' + ((page - 1) * per_page);
		}
		else
		{
			document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
		}
	}}

/**
* Find a member
*/
function find_username(url)
{
	popup(url, 760, 570, '_usersearch');
	return false;
}

/**
* Mark/unmark checklist
* id = ID of parent container, name = name prefix, state = state [true/false]
*/
function marklist(id, name, state)
{
	var parent = document.getElementById(id);
	if (!parent)
	{
		eval('parent = document.' + id);
	}

	if (!parent)
	{
		return;
	}

	var rb = parent.getElementsByTagName('input');
	
	for (var r = 0; r < rb.length; r++)
	{
		if (rb[r].name.substr(0, name.length) == name)
		{
			rb[r].checked = state;
		}
	}
}

<!-- IF ._file -->

	/**
	* Play quicktime file by determining it's width/height
	* from the displayed rectangle area
	*
	* Only defined if there is a file block present.
	*/
	function play_qt_file(obj)
	{
		var rectangle = obj.GetRectangle();

		if (rectangle)
		{
			rectangle = rectangle.split(',')
			var x1 = parseInt(rectangle[0]);
			var x2 = parseInt(rectangle[2]);
			var y1 = parseInt(rectangle[1]);
			var y2 = parseInt(rectangle[3]);

			var width = (x1 < 0) ? (x1 * -1) + x2 : x2 - x1;
			var height = (y1 < 0) ? (y1 * -1) + y2 : y2 - y1;
		}
		else
		{
			var width = 200;
			var height = 0;
		}

		obj.width = width;
		obj.height = height + 16;

		obj.SetControllerVisible(true);

		obj.Play();
	}
<!-- ENDIF -->

// ]]>
</script>
</head>
<body class="{S_CONTENT_DIRECTION}">
<a name="top"></a>

<div id="container">
<div id="wrapper">

<div id="header">
<a href="{U_INDEX}">{SITE_LOGO_IMG}</a>
<div id="top_menu">
	<!-- IF S_DISPLAY_SEARCH --><a id="search" href="{U_SEARCH}">{L_SEARCH}</a><!-- ENDIF -->
	<!-- IF not S_IS_BOT --><!-- IF S_DISPLAY_MEMBERLIST --><a id="members" href="{U_MEMBERLIST}">{L_MEMBERLIST}</a><!-- ENDIF -->
	<!-- IF S_USER_LOGGED_IN --><a id="ucp" href="{U_PROFILE}">{L_PROFILE}</a><!-- ENDIF --><!-- ENDIF -->
	<a id="faq" href="{U_FAQ}">{L_FAQ}</a>
</div>
</div>

<div id="content1">
<div id="content2">
<div id="content3">

	<br style="clear: both;" />

	<p class="genmed"><!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}"><b>{L_LOGIN_LOGOUT}</b></a><!-- ENDIF -->
	<!-- IF not S_IS_BOT -->
	<!-- IF S_USER_LOGGED_IN -->
	<!-- IF S_DISPLAY_PM --> | <a href="{U_PRIVATEMSGS}"><b>{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></b></a><!-- ENDIF -->
	<!-- ELSEIF S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --> | <a href="{U_REGISTER}"><b>{L_REGISTER}</b></a>
	<!-- ENDIF -->
	<!-- ENDIF -->
	<!-- IF U_RESTORE_PERMISSIONS --><br /><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
	<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --><br /><span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF --></p>
	
	<br style="clear: both;" />

	<!-- INCLUDE breadcrumbs.html -->
	
	<br />
	
	<table width="100%" cellspacing="0">
	<tr>
		<td class="gensmall"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ENDIF --></td>
		<td class="gensmall" align="{S_CONTENT_FLOW_END}">{CURRENT_TIME}<br /></td>
	</tr>
	</table>

	<!-- IF S_DISPLAY_SEARCH -->
	<p class="searchbar">
		<span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> | <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></span>
		<!-- IF S_USER_LOGGED_IN or S_LOAD_UNREADS -->
		<span style="float: {S_CONTENT_FLOW_END};"><!-- IF S_LOAD_UNREADS --><a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a><!-- IF S_USER_LOGGED_IN --> | <!-- ENDIF --><!-- ENDIF --><!-- IF S_USER_LOGGED_IN --><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a> | <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><!-- ENDIF --></span>
		<!-- ENDIF -->
	</p>
	<!-- ENDIF -->

	<br style="clear: both;" /><br />
	
	<div id="wrapheader"></div>
All your help is greatly appreciated.

Thank you in advance.[/i]
User avatar

Kirk
Dev
Posts: 1949
Joined: 27. July 2010 18:02
phpBB.de User: Kirk
Contact:

Re: Custom Subsilver Style portal install

Post by Kirk »

Hi
This style DarkFantasy is for the phpBB version: 3.0.7 and is unsuitable for the Portal version 2.0.1.
You have this style on the phpBB version: 3.0.11 update.
Gruß Udo

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

I've already updated the style to 3.0.11. You even locked and moved a post i made asking about it.
User avatar

Kirk
Dev
Posts: 1949
Joined: 27. July 2010 18:02
phpBB.de User: Kirk
Contact:

Re: Custom Subsilver Style portal install

Post by Kirk »

General questions about updating style have nothing to do with the portal.
For your overall_header.html try it once with this guide: viewtopic.php?f=47&t=3389
Maybe it hiflt you.
Gruß Udo

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

This topic isn't related to asking about updating a style. Only how to get Board3Portal to work on it.

Thank you for the link however. I will try it now.

EDIT: OK. Just made the changes listed on that page. They are pretty much exactly what i had tried in the past.

It has work to a certain degree. The portal shows up but the style seems to be a bit off.

The test colour isnt correct, the background image is missing. The column of the portal isn't displayed. (Currently only have the right one active) Also, it doesn't display the "Administration Control Panel" link at the bottom of the page.

Any ideas whats going on here? I imagine its just not using the correct stylesheet or something but i just don't know.

Really appreciate the help. Thank you!

EDIT 2: I also get this error message on the actual page itself.

Code: Select all

Warning: Cannot modify header information - headers already sent by (output started at /var/sites/p/provincecyrodiil.project-tamriel.com/public_html/cache/tpl_DarkFantasy_overall_header.html.php:2) in /var/sites/p/provincecyrodiil.project-tamriel.com/public_html/includes/functions.php on line 2718
Thanks again.
User avatar

Kirk
Dev
Posts: 1949
Joined: 27. July 2010 18:02
phpBB.de User: Kirk
Contact:

Re: Custom Subsilver Style portal install

Post by Kirk »

This manual is for the Board3Portal Version: 1.0.4 / 1.0.5 this, there may be errors, an attempt was worth it.
Since there are not that style for phpBB 3.0.11, unfortunately I can not help sorry.
Gruß Udo
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Custom Subsilver Style portal install

Post by archivar »

Try these instructions:
Style: DarkFantasy
Style Base: subsilver2
Style Version: 1.0.16
phpBB Version: 3.0.8
Board3Portal Version: 2.0.0b1

Style Download: http://www.phpbb.com/customise/db/style/darkfantasy/
Screenshot:
darkf.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/subsilver2/template/portal/*.*
to: root/styles/DarkFantasy/template/portal/*.*
copy: root/styles/subsilver2/theme/images/portal/*.*
to: root/styles/DarkFantasy/theme/images/portal/*.*

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

Code: Select all

<a href="{U_INDEX}">{L_INDEX}</a>
In-line Add before

Code: Select all

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

Code: Select all

<div id="content3">
Add after
Tip: Add these lines on a new blank line after 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

<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --><br /><span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF --></p>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- ENDIF -->
Add after
Tip: Add these lines on a new blank line after 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 id="wrapheader"></div>
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/DarkFantasy/template/portal/_block_config.html
Replace with
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select all

<!-- Config for the left and right blocks //-->
<!-- DEFINE $LR_BLOCK_H_L = '<table class="tablebg" cellspacing="1" width="100%"><tr><th style="padding-top: 3px; padding-bottom: 10px;"><span style="float: left;">' -->
<!-- DEFINE $LR_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $LR_BLOCK_F_L = '' -->
<!-- DEFINE $LR_BLOCK_F_R = '<br />' -->

<!-- Config for the center blocks //-->
<!-- DEFINE $C_BLOCK_H_L = '<table class="tablebg" cellspacing="1" cellpadding="0" width="100%"><tr><th><span style="text-align: center">' -->
<!-- DEFINE $C_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $C_BLOCK_F_L = '' -->
<!-- DEFINE $C_BLOCK_F_R = '<br />' -->

<!-- Images-URL //-->
<!-- DEFINE $WHOS_IMAGES = '/images/whosonline.gif' -->
<!-- DEFINE $NO_AVATAR_IMG = '/images/no_avatar.gif' -->

<!-- Vertical distance between left/right and center Blocks -->
<!-- DEFINE $BLOCK_DISTANCE = '10px' -->

<!-- show Icons in left/right Blocks? 0=no 1=yes -->
<!-- DEFINE $S_BLOCK_ICON = 1 -->

<!-- override the column width settings of the ACP for this style? 0=no 1=yes -->
<!-- DEFINE $S_COLUMNS_WIDTH_OVERRIDE = 0 -->

<!-- override the column width settings of the ACP - set the width if enabled -->
<!-- DEFINE $PORTAL_LEFT_COLUMN_OVERRIDE = '200' -->
<!-- DEFINE $PORTAL_RIGHT_COLUMN_OVERRIDE = '200' -->
additional changes: no
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:
Aus dem B3P-download-paket must Du zuerst die install.xml ausführen.

kopiere: root/styles/subsilver2/template/portal/*.*
nach: root/styles/DarkFantasy/template/portal/*.*
kopiere: root/styles/subsilver2/theme/images/portal/*.*
nach: root/styles/DarkFantasy/theme/images/portal/*.*

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

Code: Select all

<a href="{U_INDEX}">{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/DarkFantasy/template/overall_header.html
Finden
Hinweis: Der zu findende Code kann auch nur ein Teil einer Zeile sein.

Code: Select all

<div id="content3">
Danach einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile nach 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

<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --><br /><span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF --></p>
Davor einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile vor den/der gerade gesuchten eingefügt.

Code: Select all

<!-- ENDIF -->
Danach einfügen
Hinweis: Diese Zeile(n) werden in einer neuen Zeile nach 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 id="wrapheader"></div>
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/DarkFantasy/template/portal/_block_config.html
Ersetzen mit
Hinweis: Die genannten Zeile(n) werden mit den/der folgenden ersetzt.

Code: Select all

<!-- Config for the left and right blocks //-->
<!-- DEFINE $LR_BLOCK_H_L = '<table class="tablebg" cellspacing="1" width="100%"><tr><th style="padding-top: 3px; padding-bottom: 10px;"><span style="float: left;">' -->
<!-- DEFINE $LR_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $LR_BLOCK_F_L = '' -->
<!-- DEFINE $LR_BLOCK_F_R = '<br />' -->

<!-- Config for the center blocks //-->
<!-- DEFINE $C_BLOCK_H_L = '<table class="tablebg" cellspacing="1" cellpadding="0" width="100%"><tr><th><span style="text-align: center">' -->
<!-- DEFINE $C_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $C_BLOCK_F_L = '' -->
<!-- DEFINE $C_BLOCK_F_R = '<br />' -->

<!-- Images-URL //-->
<!-- DEFINE $WHOS_IMAGES = '/images/whosonline.gif' -->
<!-- DEFINE $NO_AVATAR_IMG = '/images/no_avatar.gif' -->

<!-- Vertical distance between left/right and center Blocks -->
<!-- DEFINE $BLOCK_DISTANCE = '10px' -->

<!-- show Icons in left/right Blocks? 0=no 1=yes -->
<!-- DEFINE $S_BLOCK_ICON = 1 -->

<!-- override the column width settings of the ACP for this style? 0=no 1=yes -->
<!-- DEFINE $S_COLUMNS_WIDTH_OVERRIDE = 0 -->

<!-- override the column width settings of the ACP - set the width if enabled -->
<!-- DEFINE $PORTAL_LEFT_COLUMN_OVERRIDE = '200' -->
<!-- DEFINE $PORTAL_RIGHT_COLUMN_OVERRIDE = '200' -->
zusätzliche Änderungen: nein
Manuelle Vorgänge: Knowledge Base: Änderungen an den Styles Dateien
V.G. archivar
sorry for my bad english

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

Thanks again guys.

Archivar. Do i need to install that exact style version you linked to?

I ask because I already downloaded this version of the style and updated it according to this page. Then I added the portal files included in your mod to the style. Other than that, and the changes Kirk kindly assisted me with, that's all I've changed.
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Custom Subsilver Style portal install

Post by archivar »

Mordynak wrote: Archivar. Do i need to install that exact style version you linked to?
No!
I had the instructions written in 2011 but not published because of the styles to old version.
V.G. archivar
sorry for my bad english

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

I've been unsuccessful in getting this working so far. This is the board now with the changes made.

I could make a test account so you can have a look at the style. Its an active board so im currently using the working modded prosilver style.

If theres anything you need to know in order to help let me know. I'm really not sure what to do.

Thanks guys
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Custom Subsilver Style portal install

Post by archivar »

I do not understand what problem you have? :?
V.G. archivar
sorry for my bad english

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

Well it looks like this
Image And there is no admin control panel link at the bottom.

The style works 100% on everything but the portal. Also, the standard subsilver style is working fine with the portal.

Thanks again.
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Custom Subsilver Style portal install

Post by archivar »

I can not see the styles "DarkFantasy".
V.G. archivar
sorry for my bad english

Topic author
Mordynak
Active Member
Posts: 26
Joined: 6. April 2013 01:08

Re: Custom Subsilver Style portal install

Post by Mordynak »

Ok, i just set it so that guests could change the style via the portal. And the style works fine for guests, but as soon as you login it breaks.
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Custom Subsilver Style portal install

Post by archivar »

Give me admin access via PM.
And they turn on the debug mode.
V.G. archivar
sorry for my bad english
Post Reply

Return to “Styles Support”