Click to See Complete Forum and Search --> : Browser window borders or spaces


rosebudjoy
11-25-2003, 11:17 PM
I don't know if this is an html question or javascript but currently I am using a javascript to open a page and I can not seem to get rid of the border on the left and top. Any help would be deeply appreciated. Thanks.

www.christianemillinger.com

pyro
11-25-2003, 11:19 PM
It's neither... ;)

Try CSS:

<style type="text/css">
body {
margin: 0;
padding: 0;
}
</style>

rosebudjoy
11-25-2003, 11:37 PM
Thanks very much. It works great. I need to dig into the CSS thing.

fredmv
11-25-2003, 11:44 PM
Originally posted by rosebudjoy
I need to dig into the CSS thing. You may find this tutorial (http://www.w3schools.com/css/) helpful to start with. ;)