posición logo

cupsf

New Member
Hola, ¿sabría alguien decirme en qué plantilla está la posición del logo (left, center...) para poder cambiarla?
Gracias de antemano.
 

cupsf

New Member
sendog said:
si no me equivoco tenes que editar la plantilla header

esta es mi plantilla header:

Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="$stylevar[align=left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td align="$stylevar[align=right]">
		&nbsp;
	</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

yo, lo que quiero hacer es que en vez de salir a la izquierda, salga centrado. ¿Me podría ayudar alguien?
 

Itsuki Minami

New Member
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="$stylevar[align=center]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td align="$stylevar[align=right]">
		&nbsp;
	</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

ahi tienes espero te sirva
 

cupsf

New Member
Se sigue quedando a la izqda, pero gracias de todas formas. No sé porqué será...
 

cupsf

New Member
Gracias, balder. Pero ya he conseguido hacerlo. Dejo la plantilla header por si le sirve a alguien.
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="$stylevar[align=left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><td align="center"><img src="$stylevar[titleimage]" align="center" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td align="$stylevar[align=right]">
		&nbsp;
	</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output
 
Top