Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/01/2008, 09:44
malevaje
 
Fecha de Ingreso: enero-2008
Mensajes: 1
Antigüedad: 16 años, 2 meses
Puntos: 0
Modificar posicion de una imagen

Buenas!
Tengo un portal desarrollado con joomla y estoy modificando la plantilla.
He cambiado el tamaño de una imagen "header_image" pero no consigo cambiarla de posición, ya que pone que esta en absolute position.
Y no encuentro el absolute position el valor que tiene...

Acontinuación os escribo el html... Espero que me podais hechar un cable.

Gracias.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php $iso = split( '=', _ISO );
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $iso[1]; ?>" />
<?php mosShowHead();
if ( $my->id ) {
initEditor();
}
?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<link href="<?php echo $mosConfig_live_site; ?>/templates/frozen_green/css/template_css.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!-- Header image in absolute position -->
<div id="header_img"><img src="<?php echo $mosConfig_live_site; ?>/templates/frozen_green/images/header_img.jpg" top="100" width="208" height="173" alt="Header Image" /></div>
<!-- Template Layout -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="frametable">
<tr valign="top">
<td id="top_l"><div id="logo"><a href="<?php echo $mosConfig_live_site; ?>/"><img src="<?php echo $mosConfig_live_site; ?>/templates/frozen_green/images/logo.jpg" align="left" width="210" height="112" alt="<?php echo $mosConfig_sitename; ?>" title="<?php echo $mosConfig_sitename; ?>" /></a></div></td>
<td id="top_c"><div id="module_t"><?php mosLoadModules ( 'top', -1 ); ?></div></td>
<td id="top_r"><div id="menu_t"><?php mosLoadModules ( 'user3', -1 ); ?></div></td>
</tr>
<tr>
<td colspan="3" id="header"></td>
</tr>
<tr valign="top">
<td class="mods"><div id="modules_l"><?php mosLoadModules ( 'left' ); ?></div></td>
<?php if (mosCountModules ('right')) { ?>
<td id="main">
<?php mosPathWay(); ?><?php mosMainBody(); ?>
<?php if ((mosCountModules( 'user1' )) && (mosCountModules( 'user2' ))) { ?>
<div>
<div class="users"><?php mosLoadModules ( 'user1' ); ?></div>
<div class="users"><div id="spacer"><?php mosLoadModules ( 'user2' ); ?></div></div>
</div>
<div class="clear"></div>
<?php } ?>
</td>
<td class="mods"><div id="modules_r"><?php mosLoadModules ( 'right' ); ?></div></td>
<?php } else { ?>
<td colspan="2" id="main">
<?php mosPathWay(); ?><?php mosMainBody(); ?>
<?php if ((mosCountModules( 'user1' )) && (mosCountModules( 'user2' ))) { ?>
<div>
<div class="users"><?php mosLoadModules ( 'user1' ); ?></div>
<div class="users"><div id="spacer"><?php mosLoadModules ( 'user2' ); ?></div></div>
</div>
<div class="clear"></div>
<?php } ?>
</td>
<?php } ?>
</tr>
<tr valign="middle">
<td colspan="3" id="footer"><div id="copyright">&copy; <?php echo $mosConfig_sitename; ?><br /><a href="http://www.joomla.org">Joomla!</a> is Free Software released under the GNU/GPL License.</div></td>
</tr>
</table>
<div id="copyleft">Free template &quot;Frozen New Year&quot; by [ Anch ] <a href="http://support.gorsk.net/">Gorsk.net Studio</a>. Please, don't remove this hidden copyleft! You have got this template gratis, so don't become a freak.</div>
</body>
</html>