|
|
|||||||
| About Us | Register | FAQ | Members List | Calendar | Mark Forums Read |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Canadian Spaceman
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: May 2002
Location: Canada
Posts: 8,594
|
Html code for a blank box.
Im trying to make a small webpage that has no bars at all, no address bar, no scroll bar, no standard buttons. Just a box, anyone know what code(s) to use to achieve this?
__________________
|
|
|
|
|
|
#2 (permalink) |
|
Registered User
![]() ![]() ![]() ![]() ![]() Join Date: Sep 2002
Location: Bogota, Colombia
Posts: 1,157
|
As in a popup window?
http://www.w3schools.com/js/js_window.asp http://developer.irt.org/script/window.htm
__________________
Flaretech.biz web hosting |
|
|
|
|
|
#4 (permalink) | |
|
Single
![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: Apr 2002
Location: Norway
Posts: 667
|
You can use some javascript:
Quote:
__________________
This is my new improved sig. |
|
|
|
|
|
|
#6 (permalink) |
|
Registered User
![]() ![]() ![]() ![]() ![]() Join Date: Sep 2002
Location: Bogota, Colombia
Posts: 1,157
|
Check out www.ghtml.com/showoff/scrollbar/index.html, not for the actual script there, but notice that if you resize your browser window, the scroller won't show up. This is because of the overflow:hidden of the body part of the stylesheet:
<style type="text/css"> #content {position: absolute;} body {margin-left:0; margin-right:0; margin-top:0; margin-bottom:0; width:100%;height:100%;overflow:hidden} </style> You can either add an embedded CSS2 stylesheet like that or simply put <body style="overflow: hidden">
__________________
Flaretech.biz web hosting Last edited by zukeft; December 2nd, 2002 at 01:58. |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|