Página 1 de 1

Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 03:30
por meiku
Hola, necesito ayuda u.u lo que pasa es que tengo este theme http://www.phpbb.com/customise/db/style/polyethylene/ intente agregar la barra lateral que la saque de aqui http://www.phpbb-es.com/foro/guias-phpb ... 18400.html, segui las instrucciones pero no me sale la barra lateral en mi foro... aqui dejo mi archivo overall_header.html modificado segun la guia.

Código: Seleccionar todo

<!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="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
{META}
<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 -->

<!--
   phpBB style name: polyethylene
   Based on style:   subsilver2
   Original author:  Tom Beddard ( http://www.subBlue.com/ )
   Modified by:      Zergall ( http://www.Stylerbb.net/ )

         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" />

<script type="text/javascript">
// <![CDATA[
<!-- IF S_USER_PM_POPUP -->
	if ({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 id="wrapheader" name="wrapheader" accesskey="t"></a>

<div id="kontener">
<div id="header">
<a href="{U_INDEX}">
<img src="{T_THEME_PATH}/images/logo.png" alt="{L_INDEX}" />
</a>
</div>
<div id="content">


<div id="menu">
<span class="left">
<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --> &nbsp;<a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> &nbsp;<span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_USER_LOGGED_IN -->
<!-- IF S_DISPLAY_PM --> &nbsp;<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a><!-- ENDIF -->
<!-- ELSEIF S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --> &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a>
<!-- ENDIF -->
<!-- ENDIF -->
</span>
<span class="right">
<a href="{U_FAQ}">{L_FAQ}</a>
<!-- IF S_DISPLAY_SEARCH -->&nbsp; &nbsp;<a href="{U_SEARCH}">{L_SEARCH}</a><!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST -->&nbsp; &nbsp;<a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a><!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN -->&nbsp; &nbsp;<a href="{U_PROFILE}">{L_PROFILE}</a><!-- ENDIF -->
<!-- ENDIF -->
</span>
</div>
<span class="left"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ENDIF --></span>
<span class="right">{CURRENT_TIME}</span>



<!-- IF S_DISPLAY_SEARCH -->
<p class="searchbar">
<span class="left"><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  class="right"><!-- 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;" />
<table width="100%" cellspacing="0">
<tr>
<td valign="top" width="17%" style="padding-right:8px;">

<div class="navbar">
<div class="inner">
<span class="corners-top"><span></span></span>
				

<ul class="linklist navlinks">
<li><img src="./images/nav.png">&nbsp;<b>Navegación</b></li></ul>
					
<img src="./images/dot.gif" border="0"><a href="index.php">Índice general</a>
<br><img src="./images/dot.gif" border="0"><a href="search.php">Buscar</a>
<!-- IF S_USER_LOGGED_IN -->
<br><img src="./images/dot.gif" border="0"><a href="ucp.php">Perfil</a>
<br><img src="./images/dot.gif" border="0"><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>
<!-- ENDIF -->
<br><img src="./images/dot.gif" border="0"><a href="search.php?search_id=newposts">Mensajes nuevos</a>
<br><img src="./images/dot.gif" border="0"><a href="search.php?search_id=egosearch">Sus mensajes</a>
<br><img src="./images/dot.gif" border="0"><a href="search.php?search_id=unanswered">Mensajes sin respuesta</a>
<br><img src="./images/dot.gif" border="0"><a href="search.php?search_id=active_topics">Temas activos</a>
<br>
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED -->
<br><img src="./images/dot.gif" border="0"><a href="{U_REGISTER}">{L_REGISTER}</a>
<!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<br><img src="./images/dot.gif" border="0"><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
<!-- ENDIF -->
		
<ul class="linklist navlinks">
<br><li><img src="./images/user.png">&nbsp;<b>Usuarios</b></li></ul>
							
<img src="./images/dot.gif" border="0"><a href="memberlist.php">Lista de Usuarios</a>
<br><img src="./images/dot.gif" border="0"><a href="memberlist.php?mode=leaders">El equipo</a>

<ul class="linklist navlinks">
<br><li><img src="./images/help.png">&nbsp;<b>Ayuda</b></li></ul>

<img src="./images/dot.gif" border="0"><a href="faq.php">FAQ</a>
<br><img src="./images/dot.gif" border="0"><a href="faq.php?mode=bbcode">FAQ BBcodes</a>
<br><img src="./images/dot.gif" border="0"><a href="ucp.php?mode=terms">Términos de uso</a>
<br><img src="./images/dot.gif" border="0"><a href="ucp.php?mode=privacy">Política de Privacidad</a>

<span class="corners-bottom"><span></span></span>
</div>
</div>


<br><div class="navbar">
<div class="inner">
<span class="corners-top"><span></span></span>
<ul class="linklist navlinks">
<li><img src="./images/world_link.png">&nbsp;<b>Webs Amigas</b></li></ul>
					
<marquee id="webs" name="webs" behavior="scroll" direction="up" scrolldelay="100" scrollamount="2" onmouseover="this.stop()" onmouseout="this.start()" height="100">
<center>
<a href="http://www.phpbb.com/" target="_blank"><img src="./images/phpbb.gif"></a>
</center>
</marquee>

<span class="corners-bottom"><span></span></span>
</div>
</div>


<br><div class="navbar">
<div class="inner">
<span class="corners-top"><span></span></span>
<ul class="linklist navlinks">
<li><img src="./images/cup.png">&nbsp;<b>Publicidad</b></li></ul>
					
Puedes poner una imagen o código de Google Ad.

<span class="corners-bottom"><span></span></span>
</div>
</div>

</td>
<td width="100%" valign="top">
y mi overall_footer.html modificado segun lo dice la guia

Código: Seleccionar todo

</td>
</tr>
</table>
        <div style="clear: both; height: 0;"></div>
	<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->

<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.

	The phpBB Group : 2006
//-->

</div>
<div id="stopka">
<span id="theme">Theme designed by <a href="http://stylerbb.net/">stylerbb.net</a> &copy; 2008</span><br />
Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group
	<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
	<!-- IF DEBUG_OUTPUT --><br /><bdo dir="ltr">[ {DEBUG_OUTPUT} ]</bdo><!-- ENDIF -->
	<br />{S_TIMEZONE}
	<!-- IF U_ACP --><br /><br /><span class="gensmall">[ <a href="{U_ACP}">{L_ACP}</a> ]</span><!-- ENDIF -->
</div>
</div>


</body>
</html>
Ojala me puedan ayudar >.< lo agradecere de corazon...me siento desesperada x.x

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 03:44
por nextgen
http://www.phpbb-es.com/foro/rules/index.php#rule2a

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 03:47
por meiku
No entiendo, soy nueva aqui :?
No me pueden ayudar tonces?

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 03:57
por memoadian
Le das click a ese link y lees las normas, cuando las leas verás que necesitamos tus datos de soporte :D

y con eso te ayudaremos con todo gusto.

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 04:09
por meiku
URL: http://slayer-ro.net/foro/
Plantilla(s) usuada(s): http://www.phpbb.com/customise/db/style/polyethylene/
MODs instalados: ACP Announcement Centre 1.2.4, AutoMod 1.0
Versión de phpBB: Phpbb3
Servidor: pagado

Disculpen las molestias.

Re: Sobre barra lateral en mi Theme  Tema Solucionado

Publicado: 05 Ago 2011, 04:23
por memoadian
¿ya actualizaste la cache de tu foro?

ACP->estilos->plantillas->limpiar la cache o actualizar

lo mismo con el theme del estilo

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 04:59
por meiku
memoadian escribió:¿ya actualizaste la cache de tu foro?

ACP->estilos->plantillas->limpiar la cache o actualizar

lo mismo con el theme del estilo
O.O no lo habia echo, wow te lo agradesco mucho!! problema resuelto :mrgreen:

Re: Sobre barra lateral en mi Theme

Publicado: 05 Ago 2011, 05:03
por memoadian
Es un problema recurrente, de ahora en adelante no se te olvide que cada cambio en tu estilo conlleva limpiar la cache.