THEME BKG

G

Guest

To whom it may concern:
Windows XP / Frontpage Page 2003
I designed a full screen graphic 1076 x 760, to be used for my Theme Bkg. It
has a top, bottom and 2 sides. When I use the graphic in Theme mode, it
repeats. How do I stop it from repeating at the bottom and right side?

Thanks for your time,
JD
 
T

Thomas A. Rowe

See replies to your previous post.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
D

Don

Do it with some "Style"

In the <head> of the page </head> (code view) put this in and change the
image name to yours.

<style>
body {
background-attachment: fixed;
background-color: #FFFFFF;
background-image: url('images/yourpicture.jpg');
background-repeat: no-repeat;
}
</style>

HTH

Don
==========================
| To whom it may concern:
| Windows XP / Frontpage Page 2003
| I designed a full screen graphic 1076 x 760, to be used for my Theme Bkg.
It
| has a top, bottom and 2 sides. When I use the graphic in Theme mode, it
| repeats. How do I stop it from repeating at the bottom and right side?
|
| Thanks for your time,
| JD
 
G

Guest

Don,
Thanks for your input.

I am confused with some points...

1.)
Does the following go after the word "</head>" (which is located on line 38) ?

<style>
body {
background-attachment: fixed;
background-color: #FFFFFF;
background-image: url('images/yourpicture.jpg');
background-repeat: no-repeat;
}
</style

2.)
Is there a space before and after the code when you input it?

3.)
I changed ('images/yourpicture.jpg'); to....
('images/BKG 9.jpg'); "BKG 9.jpg" is the name of the graphic

4.)
I inputed as above, but the graphic repeats. I do not want it to repeat.

Thanks for your time.
JD
 
D

Don

Reply inline below...

Don
======================
| Don,
| Thanks for your input.
|
| I am confused with some points...
|
| 1.)
| Does the following go after the word "</head>" (which is located on line
38) ?

It goes just before the </head>

|
| <style>
| body {
| background-attachment: fixed;
| background-color: #FFFFFF;
| background-image: url('images/yourpicture.jpg');
| background-repeat: no-repeat;
| }
| </style>
|
| 2.)
| Is there a space before and after the code when you input it?
|

You can but it is not nessary...

| 3.)
| I changed ('images/yourpicture.jpg'); to....
| ('images/BKG 9.jpg'); "BKG 9.jpg" is the name of the graphic

Ok if you have the image in the "root" of the web then BKG.jpg is right..
BUT if your image is in the "images" Folder then you need to use
'images/BKG.jpg'

SO if in the images folder use.
background-image: url('images/BKG.jpg');

OR if the image is not in a folder use.
background-image: url('BKG.jpg');


|
| 4.)
| I inputed as above, but the graphic repeats. I do not want it to repeat.
|

Move it to just B4 the </head> tag and it should work

| Thanks for your time.
| JD
|
|
|
| "Don" wrote:
|
| > Do it with some "Style"
| >
| > In the <head> of the page </head> (code view) put this in and change
the
| > image name to yours.
| >
| > <style>
| > body {
| > background-attachment: fixed;
| > background-color: #FFFFFF;
| > background-image: url('images/yourpicture.jpg');
| > background-repeat: no-repeat;
| > }
| > </style>
| >
| > HTH
| >
| > Don
| > ==========================
| > | > | To whom it may concern:
| > | Windows XP / Frontpage Page 2003
| > | I designed a full screen graphic 1076 x 760, to be used for my Theme
Bkg.
| > It
| > | has a top, bottom and 2 sides. When I use the graphic in Theme mode,
it
| > | repeats. How do I stop it from repeating at the bottom and right side?
| > |
| > | Thanks for your time,
| > | JD
| >
| >
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top