Click to See Complete Forum and Search --> : page border


tom_f
09-10-2003, 09:37 PM
I want to put a border around a web page. Suggestions, please.

pyro
09-10-2003, 10:09 PM
<body style="border: 5px solid;">

tom_f
09-10-2003, 10:31 PM
many thanks. it is just as i wanted it to look (but 20px). it is for tomorrow.

i applied this only to my home page. if i wanted this to apply to every page on the site, could i put something in my css file (which is linked into every page on the website)?

pyro
09-10-2003, 10:33 PM
Yes, just add this to your .css file:

body {
border: 20px solid;
}

tom_f
09-10-2003, 11:04 PM
perfect. thanks again.

pyro
09-10-2003, 11:08 PM
Sure thing... :)