| ||||
Puedes poner en el body: <body onload="self.resizeTo(screen.width,screen.height)" > Y nos vamos a Javascript!
__________________ Cómo escribir No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |
| |||
malditos frames todo lo tiene q complicar donde tengo q poner el body? esta es la estructura q tengo en el index: <html> <head> <title>ADR </title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <META NAME="description" . . . > </head> <frameset rows="74,50,*" frameborder="NO" border="0" framespacing="0" cols="*" bordercolor="#FFFFFF"> <frame src="Cabecera/Cabecera.asp" name="Toptop" scrolling="NO" noresize frameborder="NO" marginwidth="0" marginheight="0"> <frame name="Botonera" scrolling="NO" src="http://www.infonegocio.com/ecosmep/Cabecera/Botonera.htm" marginwidth="0" marginheight="0" noresize frameborder="NO" > <frame name="mainFrame" src="/Cabecera/Micuenta.asp" frameborder="NO" marginwidth="0" marginheight="0" scrolling="AUTO" noresize> </frameset> <noframes> <body bgcolor="#FFFFFF" text="#000000"> Última edición por rrufo; 18/02/2004 a las 06:56 |
| ||||
Prueba a poner en el head: <html> <head> <title>ADR </title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <META NAME="description" . . . > <script> self.resizeTo(screen.width,screen.height); </script> </head>
__________________ Cómo escribir No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |
| ||||
De nada! Mejor prueba a poner: <script> self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight ); </script> Con esto dejaraás la ventana del tamaño justo.
__________________ Cómo escribir No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |