Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..

Gracias.

La Administración de phpBB España.

Logo Del Foro Sale Desplazado O No Aparece

Dudas sobre estilos phpBB 3.0.x
Colaboraciones gráficas paquetes de rangos aquí y botones aquí.
Cerrado
Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Logo Del Foro Sale Desplazado O No Aparece

#1

Mensaje por coexisto »

Hola, tengo algunos problemillas para poner el logo del foro en dos estilos distintos:
1.-Extreme darkred: como veran en la foto el logo sale desplazado, kedadno un espacio sin usar al lado izquierdo del header y no se como arreglar esto. Este logo lo agregue directamente a la carpeta de imagenes del estilo antes de subirlo.
Imagen


2.-Codeblack: me meti a los codigos html en la plantilla para poner el logo, pero solo me aparece la direccion de la foto, lo mas raro es ke lo he borrado y subido de nuevo pero me aparece lo mismo y aunke elija el logo original lueggo en el PDA igual aparece esa direccion

Imagen
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Zeuss
Observador/a
Mensajes: 7
Registrado: 19 Mar 2008, 23:54

Re: Logo Del Foro Sale Desplazado O No Aparece

#2

Mensaje por Zeuss »

Modifica el archivo del header manualmente...
Tal vez si lo adjuntas le puedo echar un vistazillo.

SALUDOS

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#3

Mensaje por coexisto »

O.o

no entiendo muy bien a lo ke te refieres...

ke kieres ke te muestre? :nolose:
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#4

Mensaje por coexisto »

A ver, ke tenvio el html del header de cada uno de los estilos...es eso lo que me pedias?
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Zeuss
Observador/a
Mensajes: 7
Registrado: 19 Mar 2008, 23:54

Re: Logo Del Foro Sale Desplazado O No Aparece

#5

Mensaje por Zeuss »

el overall_header.html de tu theme.

SALUT!

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#6

Mensaje por coexisto »

EXTREME DARKRED:

<!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} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<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 perpage = '{PER_PAGE}';
var base_url = '{A_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(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="wrapheader">

<div id="logodesc">
<table width="100%" cellspacing="0">
<tr>
<td><a href="{U_INDEX}">{http://img213.imageshack.us/img213/9415 ... g}</a></td>
</tr>
</table>
</div>

<div id="menubar">
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td align="center" valign="middle" class="cat"><!-- IF not S_IS_BOT -->
<a href="{U_LOGIN_LOGOUT}"> &bull; {L_LOGIN_LOGOUT}</a>&nbsp;
<!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS -->
&nbsp;&nbsp;&bull;<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;&nbsp;<a href="{U_PRIVATEMSGS}">&bull; {PRIVATE_MESSAGE_INFO}
<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->
, {PRIVATE_MESSAGE_INFO_UNREAD}
<!-- ENDIF -->
</a>
<!-- ENDIF -->
&nbsp;
<!-- ELSE -->
&nbsp;&nbsp;<a href="{U_REGISTER}">&bull; {L_REGISTER}</a>
<!-- ENDIF -->
&nbsp;
<!-- ENDIF -->
<a href="{U_FAQ}"> &bull; {L_FAQ}</a>
<!-- IF S_DISPLAY_SEARCH -->
&nbsp; &nbsp;<a href="{U_SEARCH}">&bull; {L_SEARCH}</a>
<!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST -->
&nbsp; &nbsp;<a href="{U_MEMBERLIST}">&bull; {L_MEMBERLIST}</a>
<!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN -->
&nbsp; &nbsp;<a href="{U_PROFILE}">&bull; {L_PROFILE}</a>
<!-- ENDIF -->
<!-- ENDIF -->
</td>
</tr>
</table>
</div>

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

</div>

<div id="wrapcentre">

<!-- 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_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 />
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#7

Mensaje por coexisto »

CODEBLACK:

<!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} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<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 perpage = '{PER_PAGE}';
var base_url = '{A_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(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="wrapheader">

<div id="logodesc">
<table width="100%" cellspacing="0">
<tr>
<td><a href="{U_INDEX}">{http://img213.imageshack.us/img213/9415 ... g}</a></td>
</tr>
</table>
</div>

<div id="menubar">
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td align="center" valign="middle" class="cat"><!-- IF not S_IS_BOT -->
<a href="{U_LOGIN_LOGOUT}"> &bull; {L_LOGIN_LOGOUT}</a>&nbsp;
<!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS -->
&nbsp;&nbsp;&bull;<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;&nbsp;<a href="{U_PRIVATEMSGS}">&bull; {PRIVATE_MESSAGE_INFO}
<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->
, {PRIVATE_MESSAGE_INFO_UNREAD}
<!-- ENDIF -->
</a>
<!-- ENDIF -->
&nbsp;
<!-- ELSE -->
&nbsp;&nbsp;<a href="{U_REGISTER}">&bull; {L_REGISTER}</a>
<!-- ENDIF -->
&nbsp;
<!-- ENDIF -->
<a href="{U_FAQ}"> &bull; {L_FAQ}</a>
<!-- IF S_DISPLAY_SEARCH -->
&nbsp; &nbsp;<a href="{U_SEARCH}">&bull; {L_SEARCH}</a>
<!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST -->
&nbsp; &nbsp;<a href="{U_MEMBERLIST}">&bull; {L_MEMBERLIST}</a>
<!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN -->
&nbsp; &nbsp;<a href="{U_PROFILE}">&bull; {L_PROFILE}</a>
<!-- ENDIF -->
<!-- ENDIF -->
</td>
</tr>
</table>
</div>

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

</div>

<div id="wrapcentre">

<!-- 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_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 />
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#8

Mensaje por coexisto »

era eso lo ke kerias o no???? :roll:
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Avatar de Usuario
calero12
Observador/a
Mensajes: 40
Registrado: 06 Ene 2007, 13:00

Re: Logo Del Foro Sale Desplazado O No Aparece

#9

Mensaje por calero12 »

Han baneado a Zeus... Si te fijas en el mensaje anterior su mensaje está bloqueado por el ctracker

Avatar de Usuario
coexisto
Observador/a
Mensajes: 36
Registrado: 24 Feb 2008, 18:51

Re: Logo Del Foro Sale Desplazado O No Aparece

#10

Mensaje por coexisto »

o.O

o sea ke nadie puede ayudarme?????????????!!!!!!!

:cry:
URL: http://darkuchos.zzl.org/
Plantilla(s) usuada(s): subsilver
MODs instalados: por defecto
Versión de phpBB: 3.0.0
Servidor: MySQL 5.0.27-Debian_0.dotdeb.1, gratuito
Si es una actualización desde otra versión:no es actualizacion
Si es una conversión desde otro tipo de Foro: nop.

Cerrado

Volver a “Soporte para Estilos phpBB 3.0.x”