Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/11/2009, 17:47
Avatar de Zuker
Zuker
 
Fecha de Ingreso: marzo-2007
Ubicación: Argentina
Mensajes: 164
Antigüedad: 17 años, 1 mes
Puntos: 1
Problema con div en el footer

Buenas

Estoy tratando de agregar un div al pie de mi pagina

El tema es que no se por que tengo que forzarle a que tenga un tamaño, sino aparece alineado a la izquierda

Pueden verlo aca por ej:

http://www.taringacs.net/steam/

el codigo html es este

Código:
<div id="footer">
	<center>
		<a rel="nofollow" href="http://www.localhost.net.ar" title="LocalHost - Soluciones Innovadoras" target="_blank" class="localhost"></a>
		<a rel="nofollow" href="http://www.taringa.net" title="Taringa! - Inteligencia Colectiva" target="_blank" class="taringa"></a>
		<a rel="nofollow" href="http://www.localstrike.com.ar" title="LocalStrike - Live your Game!" target="_blank" class="localstrike"></a>
		<a rel="nofollow" href="http://www.argentina.ar" title="Creado en Argentina" target="_blank" class="argentina"></a>
	</center>
</div>
El codigo del css es este

Código:
#footer {
	margin:10px auto;
	text-align:center;
	width:445px;
	height:25px;
}
#footer .localhost {
	background:transparent url(/images/fmarcas_lh.png) no-repeat scroll 0 0;
	width:115px;
	height:25px;
	display:block;
	float:left;
}
#footer .taringa {
	background:transparent url(/images/fmarcas_t.png) no-repeat scroll 0 0;
	width:102px;
	height:25px;
	display:block;
	float:left;
}
#footer .localstrike {
	background:transparent url(/images/fmarcas_ls.png) no-repeat scroll 0 0;
	width:122px;
	height:25px;
	display:block;
	float:left;
}
#footer .argentina {
	background:transparent url(/images/fmarcas_ar.png) no-repeat scroll 0 0;
	width:102px;
	height:25px;
	display:block;
	float:left;
}
#footer .localhost:hover,#footer .taringa:hover,#footer .localstrike:hover,#footer .argentina:hover {
	background-position:0 -25px;
}
Alguna idea? realmente estoy perdido

Gracias