Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/01/2008, 12:41
Avatar de Raulmmmm
Raulmmmm
 
Fecha de Ingreso: marzo-2007
Ubicación: En otro lugar que tú
Mensajes: 1.549
Antigüedad: 17 años, 1 mes
Puntos: 36
Re: Problemas con FRAMESET

En vez de poner un frameset, pon un iframe:
Sustituye:
Código HTML:
<FRAMESET border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0>
<frame src="http://google.com" scrolling=auto frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize>
</FRAMESET> 
Por:
Código HTML:
<iframe style="border:0; margin: 0;" width="100%" src="http://google.com"></iframe>