Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/12/2012, 02:18
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 17 años
Puntos: 1146
Respuesta: Posicionamiento de mi footer al final de mi Web

valla no tienes mucha idea de como va la estructura para colocar el pie de pagina siempre abajo, la estructura básica debe ser la siguiente, obsérvala y compara con lo que tienes para que hagas los ajustes necesarios

Código CSS:
Ver original
  1. html,body{margin:0;padding:0;height:100%;font:13px/1.5 arial,verdana,tahoma;color:#333;}
  2. #site{height:100%;}
  3. #content{width:900px;margin:0 auto;padding-bottom:33px;}
  4. #footer{height:33px;margin-top:-33px;background:#000;color:#fff;line-height:33px;text-align:center;}

Código HTML:
Ver original
  1. <div id="site">
  2.     <div id="content">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
  3. </div>
  4. <div id="footer">2012 &copy; Ag-freelances</div>