FrontPage 2003 and border

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Happy Thanksgiving!

I just downloaded a holiday border that I want to put around (or frame) my
website's pages. The pages are in FP 2003. How do I do this? Also, how would
I remove it (after Christmas).

Thanks.
 
john319 said:
Happy Thanksgiving!

What's that??
Sorry, just an Aussie being silly. We don't celebrate this holiday here.
I just downloaded a holiday border that I want to put around (or
frame) my website's pages. The pages are in FP 2003. How do I do
this? Also, how would I remove it (after Christmas).

My thoughts are to make it a background image, but this would probably only
work well if you have a fixed page size, e.g. 760 px width and the image is
the same size. If it isn't the same size, you may need to resize it, using
an image editor. A very good free one is at www.irfanview.com

To add a background image, click on the Code Tab and paste this code
between <head> and </head>:
<style type="text/css">
body { background: url(myholidayborder.jpg) no-repeat;}
</style>

To remove it, just highlight the code and press the delete key.

Actually, I note you wrote pages (plural)
So instead, create a file named style.css (in the same folder as your pages)
and paste this code into it
body { background: url(myholidayborder.jpg) no-repeat;}

Then in *each* page paste this code between <head> and </head>:
<link rel="stylesheet" type="text/css" href="style.css" />

To remove it,
EITHER
change the code in style.css to something else
OR
comment the code in style.css
e.g.
/*
<style type="text/css">
body { background: url(myholidayborder.jpg) no-repeat;}
</style>
*/

I hope this works.
 
Back
Top