Página 1 de 1

country flag en el profile se ve mal

Publicado: 26 Sep 2010, 08:08
por cfeze
Hola gente, tengo un problema con el country flag, creo que falta un salto de linea"<br \>" entre locación y country (esto se sucede cuando esta locación) pero veo todo bien en el html, quizás sea en un archivo .php y eso ni idea.

Imagen

Código: Seleccionar todo

		<dt><label for="website">{L_WEBSITE}:</label></dt>
		<dd><input type="text" name="website" id="website" maxlength="255" value="{WEBSITE}" class="inputbox" /></dd>
	</dl>
	<dl>
		<dt><label for="location">{L_LOCATION}:</label></dt>
		<dd><input type="text" name="location" id="location" maxlength="255" value="{LOCATION}" class="inputbox" /></dd>
	</dl>
	<dl>
		<dt><label for="flag">{L_COUNTRY}:</label></dt>
		<dd><select name="flag" onchange="update_flag(this.options[selectedIndex].id);">{S_FLAG_OPTIONS}</select> <img src="{FLAG_IMAGE}" id="flag_image" alt="" /></dd>
	</dl>
	<dl>
		<dt><label for="occupation">{L_OCCUPATION}:</label></dt>
		<dd><textarea name="occupation" id="occupation" class="inputbox" rows="3" cols="30">{OCCUPATION}</textarea></dd>
	</dl>
	<dl>

Re: country flag en el profile se ve mal  Tema Solucionado

Publicado: 26 Sep 2010, 08:18
por leviatan21
Si le falta un salto de linea, prueba con este cambio

Abrir :
raíz/styles/absolution/template/viewtopic_body.html

Buscar :

Código: Seleccionar todo

<!-- IF postrow.FLAG_IMG --><strong>{L_COUNTRY}:</strong> {postrow.FLAG_IMG}<!-- ENDIF --> 
Reemplazar por :

Código: Seleccionar todo

<!-- IF postrow.FLAG_IMG --><strong><br />{L_COUNTRY}:</strong> {postrow.FLAG_IMG}<!-- ENDIF --> 

Re: country flag en el profile se ve mal

Publicado: 26 Sep 2010, 17:08
por cfeze
Solucionado.

Muchas gracias Leviatan21