Ik heb mijn stijl Vista geupgrade vanmiddag van 3.0.5 naar 3.0.6
http://www.phpbb.com/community/viewtopi ... 5#p5031075 <de codes changes
alles is goed gegaan op één ding na die ik niet vinden kan
Code: Selecteer alles
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/overall_header.htm
#
#-----[ FIND ]---------------------------------------------
# Around Line 166
					<!-- ELSEIF S_REGISTER_ENABLED -->  <a href="{U_REGISTER}"><img src="{T_THEME_PATH}/images/icon_mini_register.gif" width="12" height="13" alt="*" /> {L_REGISTER}</a>
#
#-----[ REPLACE WITH ]---------------------------------------------
#
					<!-- ELSEIF S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) -->  <a href="{U_REGISTER}"><img src="{T_THEME_PATH}/images/icon_mini_register.gif" width="12" height="13" alt="*" /> {L_REGISTER}</a
Code: Selecteer alles
<!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>
<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="2002-2006 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
{META}
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title><!-- IF S_ENABLE_FEEDS -->
	<link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" />
	<!-- 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_ALL_TOPICS}" href="{U_FEED}?mode=topics" /><!-- 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 -->
<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />
<link rel="shortcut icon" href="./favicon.ico">
<script type="text/javascript">
<!--
<!-- IF S_USER_PM_POPUP -->
	if ({S_NEW_PM})
	{
		window.open('{UA_POPUP_PM}', '_phpbbprivmsg', 'height=225,resizable=yes,width=400');
	}
<!-- ENDIF -->
function popup(url, width, height)
{
	window.open(url.replace(/&/g, '&'), '_popup', 'HEIGHT=' + height + ',resizable=yes,scrollbars=yes, WIDTH=' + width);
	return false;
}
function jumpto()
{
	var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
	var perpage = '{PER_PAGE}';
	var base_url = '{BASE_URL}';
	if (page !== null && !isNaN(page) && page > 0)
	{
		document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
	}
}
/**
* Find a member
*/
function find_username()
{
	<!-- IF UA_FIND_USERNAME -->
	window.open('{UA_FIND_USERNAME}', '_usersearch', 'height=500, resizable=yes, scrollbars=yes, width=740');
	<!-- ENDIF -->
	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>
<script type="text/javascript">
<!-- 
faqup = new Image; faqup.src = "{T_IMAGESET_LANG_PATH}/button_faq.gif";
faqdown = new Image; faqdown.src = "{T_IMAGESET_LANG_PATH}/button_faq_over.gif";
rulesup = new Image; rulesup.src = "{T_IMAGESET_LANG_PATH}/button_rules.gif";
rulesdown = new Image; rulesdown.src = "{T_IMAGESET_LANG_PATH}/button_rules_over.gif";
pmup = new Image; pmup.src = "{T_IMAGESET_LANG_PATH}/button_message.gif";
pmdown = new Image; pmdown.src = "{T_IMAGESET_LANG_PATH}/button_messages_over.gif";
contactup = new Image; contactup.src = "{T_IMAGESET_LANG_PATH}/button_contact.gif";
contactdown = new Image; contactdown.src = "{T_IMAGESET_LANG_PATH}/button_contact_over.gif";
homeup = new Image; homeup.src = "{T_IMAGESET_LANG_PATH}/button_home.gif";
homedown = new Image; homedown.src = "{T_IMAGESET_LANG_PATH}/button_home_over.gif";
forumup = new Image; forumup.src = "{T_IMAGESET_LANG_PATH}/button_forum.gif";
forumdown = new Image; forumdown.src = "{T_IMAGESET_LANG_PATH}/button_forum_over.gif";
phpbbup = new Image; phpbbup.src = "{T_THEME_PATH}/images/logo_phpbb.png";
phpbbdown = new Image; phpbbdown.src = "{T_THEME_PATH}/images/logo_phpbb_over.png";
function MouseOverRoutine(ButtonName)
{
if (ButtonName=="faq"){document.faq.src = faqdown.src;}
if (ButtonName=="rules"){document.rules.src = rulesdown.src;}
if (ButtonName=="pm"){document.pm.src = pmdown.src;}
if (ButtonName=="contact"){document.contact.src = contactdown.src;}
if (ButtonName=="home"){document.home.src = homedown.src;}
if (ButtonName=="forum"){document.forum.src = forumdown.src;}
if (ButtonName=="phpbb"){document.phpbb.src = phpbbdown.src;}
}
function MouseOutRoutine(ButtonName)
{
if (ButtonName=="faq"){document.faq.src = faqup.src;}
if (ButtonName=="rules"){document.rules.src = rulesup.src;}
if (ButtonName=="pm"){document.pm.src = pmup.src;}
if (ButtonName=="contact"){document.contact.src = contactup.src;}
if (ButtonName=="home"){document.home.src = homeup.src;}
if (ButtonName=="forum"){document.forum.src = forumup.src;}
if (ButtonName=="phpbb"){document.phpbb.src = phpbbup.src;}
}
//-->
</script>
</head>
<body class="{S_CONTENT_DIRECTION}">
<a name="top"></a>
    <div id="fixed">
<div id="wrapheader">
	<div id="menubar">
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="menu">
  <tr>
   <td align="left" valign="top" width="30%" id="linkbg">
<img src="{T_THEME_PATH}/images/spacer.gif" width="30" height="1" border="0" alt="" />
<!-- 
<a href="./portal.php" onmouseover="MouseOverRoutine('home')" onmouseout="MouseOutRoutine('home')"><img src="{T_IMAGESET_LANG_PATH}/button_home.gif" name="home" border="0" alt="" /></a>
<img src="{T_THEME_PATH}/images/div.gif" width="3" height="31" border="0" alt="" />
-->
<a href="./index.php" onmouseover="MouseOverRoutine('forum')" onmouseout="MouseOutRoutine('forum')"><img src="{T_IMAGESET_LANG_PATH}/button_forum.gif" height="31" name="forum" border="0" alt="" /></a>
<img src="{T_THEME_PATH}/images/div.gif" width="3" height="31" border="0" alt="" />
<a href="{U_FAQ}" onmouseover="MouseOverRoutine('faq')" onmouseout="MouseOutRoutine('faq')"><img src="{T_IMAGESET_LANG_PATH}/button_faq.gif" height="31" name="faq" border="0" alt="" /></a>
<img src="{T_THEME_PATH}/images/div.gif" width="3" height="31" border="0" alt="" />
<a href="rules.php" onmouseover="MouseOverRoutine('rules')" onmouseout="MouseOutRoutine('rules')"><img src="{T_IMAGESET_LANG_PATH}/button_rules.gif" height="31" name="rules" border="0" alt="" /></a>
<img src="{T_THEME_PATH}/images/div.gif" width="3" height="31" border="0" alt="" />
<a href="memberlist.php?mode=leaders" onmouseover="MouseOverRoutine('contact')" onmouseout="MouseOutRoutine('contact')"><img src="{T_IMAGESET_LANG_PATH}/button_contact.gif" height="31" name="contact" border="0" alt="" /></a>
   </td>
  </tr>
</table>
	</div>
	<div class="menubar2">
		<table width="100%" cellspacing="0">
		<tr>
            <td align="left" width="20"><a href="#bot"><img src="{T_THEME_PATH}/images/nav_top.gif" height="29" width="20" title="Down" border="0" alt="Down" /></a></td>
			<td class="catdiv">  </td>
			<td class="catdiv">
				<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a> <!-- ENDIF -->
				<!-- IF U_RESTORE_PERMISSIONS -->  <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
				<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN -->  <span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF -->
				<!-- IF not S_IS_BOT -->
					<!-- IF S_USER_LOGGED_IN -->
						<!-- IF S_DISPLAY_PM -->  <a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a><!-- ENDIF -->
					<!-- ELSE -->  <a href="{U_REGISTER}">{L_REGISTER}</a>
					<!-- ENDIF -->
				<!-- ENDIF -->
			</td>
			<td class="catdiv" align="{S_CONTENT_FLOW_END}">
				<!-- IF not S_IS_BOT -->
					<!-- IF S_DISPLAY_MEMBERLIST -->   <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a><!-- ENDIF -->
					<!-- IF S_USER_LOGGED_IN -->   <a href="{U_PROFILE}">{L_PROFILE}</a><!-- ENDIF -->
				<!-- ENDIF -->
			</td>
			<td class="catdiv">  </td>
            <td align="right" width="20"><a href="#bot"><img src="{T_THEME_PATH}/images/nav_top.gif" height="29" width="20" title="Down" border="0" alt="Down" /></a></td>
		</tr>
		</table>
	</div>
 	<div id="logodesc">
		<table cellspacing="0" align="center">
		<tr>
	        <td align="center" valign="middle" width="700" height="200">
            <a href="{U_INDEX}"><img src="{T_IMAGESET_LANG_PATH}/logo/index.php" alt="" width="600" height="200" /></a></td>
			<td valign="top" width="100%" align="right">
		<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
			<div id="search-box">
				<form action="{U_SEARCH}" method="post" id="search">
				<fieldset>
					<input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" /> 
					<input class="button2" value="{L_SEARCH}" type="submit" /><br />
					<a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_HIDDEN_FIELDS}
				</fieldset>
				</form>
			</div>
		<!-- ENDIF -->
            </td>
		</tr>
		</table>
	</div>
</div>
<div id="wrapcentre">
		<table width="100%" cellspacing="0">
		<tr>
			<td width="100%" align="center"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
		</tr>
		</table>
	<div id="datebar">
		<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>
	</div>
	<!-- 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 -->
		<span style="float: {S_CONTENT_FLOW_END};"><a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a> | <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a> | <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></span>
		<!-- ENDIF -->
	</p>
	<!-- ENDIF -->
	<br style="clear: both;" />
	<!-- INCLUDE breadcrumbs.html -->
	<br />


 Maar in dit geval maakt het niet uit en heb je die wijziging ook niet nodig omdat voor gasten toch alleen maar prosilver zichtbaar is. Kun je dus gewoon overslaan.
  Maar in dit geval maakt het niet uit en heb je die wijziging ook niet nodig omdat voor gasten toch alleen maar prosilver zichtbaar is. Kun je dus gewoon overslaan.
