Non-Scrolling Background?

B

Bob L

I develop and maintain a website with FP 2000 and I'm in the process of
adding a picture background to the pages that use the default website theme.
I'd like the picture to be centered (i.e. no tiling) within the browser
screen and not scroll when the page is scrolled. First, how is this done,
and second, is there a way to do this globally?
 
M

Murray

It's done with CSS -

body { background-attachment:fixed; }

You could do it globally by linking every page to an external stylesheet
that contains that style.

I am not sure how this would interact with your theme....
 
B

Bob L

It's done with CSS -

I've seen this mentioned before but I'm not sure exactly what that means.
The website mostly uses a theme that I modified from a standard theme and
then saved to a different name. Within that theme, I use CSS. Is that what
you mean by CSS? When I edit the Theme, I selected the background file I
want. Is that all I need to do within the Theme dialogs?

When you say external style sheet, I assume I develop that from Format |
Style and then modify the "body" through "format", "border" and then
"shading". I then select the background file, etc. in the "Patterns"
section. Is that correct?

As you can probably tell, I need very specific instructions!

..
 
M

Murray

See below -

--
Murray

Bob L said:
I've seen this mentioned before but I'm not sure exactly what that means.
The website mostly uses a theme that I modified from a standard theme and
then saved to a different name. Within that theme, I use CSS. Is that
what you mean by CSS?

Jup - that's the ticket.
When I edit the Theme, I selected the background file I want. Is that all
I need to do within the Theme dialogs?

I think so.
When you say external style sheet, I assume I develop that from Format |
Style and then modify the "body" through "format", "border" and then
"shading". I then select the background file, etc. in the "Patterns"
section. Is that correct?

Sounds right to me.
As you can probably tell, I need very specific instructions!

You did a pretty good job on your own. Go for it!
 
S

Stefan B Rusynko

To do it w/i the theme CSS use
Modify the Theme to add the "watermark" style:
Format | Theme | Modify | Text - select More Text Styles
Select the body tag and then Modify | Border | Shading and select
Repeat - select no-repeat
Attachment - select fixed
Vertical Position - select center
Horizontal Position - select center
OK|OK|OK|OK & Save As a new theme name


--




| See below -
|
| --
| Murray
|
| | >> It's done with CSS -
| >
| > I've seen this mentioned before but I'm not sure exactly what that means.
| > The website mostly uses a theme that I modified from a standard theme and
| > then saved to a different name. Within that theme, I use CSS. Is that
| > what you mean by CSS?
|
| Jup - that's the ticket.
|
| > When I edit the Theme, I selected the background file I want. Is that all
| > I need to do within the Theme dialogs?
|
| I think so.
|
| >
| > When you say external style sheet, I assume I develop that from Format |
| > Style and then modify the "body" through "format", "border" and then
| > "shading". I then select the background file, etc. in the "Patterns"
| > section. Is that correct?
|
| Sounds right to me.
|
| >
| > As you can probably tell, I need very specific instructions!
| >
|
| You did a pretty good job on your own. Go for it!
|
| > .
| > | >>
| >> body { background-attachment:fixed; }
| >>
| >> You could do it globally by linking every page to an external stylesheet
| >> that contains that style.
| >>
| >> I am not sure how this would interact with your theme....
| >>
| >> --
| >> Murray
| >>
| >> | >>>I develop and maintain a website with FP 2000 and I'm in the process of
| >>>adding a picture background to the pages that use the default website
| >>>theme. I'd like the picture to be centered (i.e. no tiling) within the
| >>>browser screen and not scroll when the page is scrolled. First, how is
| >>>this done, and second, is there a way to do this globally?
| >>>
| >>>
| >>>
| >>>
| >>
| >>
| >
| >
|
|
 
A

Ada Pan

Hi Bob,

Thanks for your post.

According to your description, I know that you want to create a fixed
background image on a Web page in FrontPage. If I misunderstood your
concern, please feel free to let me know.

First, thanks for Murray's help on this issue.

As Murray suggested, you may created by using Cascading Style Sheets (CSS)
in FrontPage.

Based on my research, I would suggest you refer to the following article in
Microsoft Knowledge Base:

317333 HOW TO: Create a Fixed, Centered Watermark Using Cascading Style
Sheets
http://support.microsoft.com/?id=317333

Hope the information helps. Please update me with the result at your
earliest convenience. I look forward to your reply.

Regards,

Ada Pan

Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
S

Stefan B Rusynko

Yes
- apply the theme using CSS

--




| Those changes should apply to all pages that use the Theme, right?
|
| | > To do it w/i the theme CSS use
| > Modify the Theme to add the "watermark" style:
| > Format | Theme | Modify | Text - select More Text Styles
| > Select the body tag and then Modify | Border | Shading and select
| > Repeat - select no-repeat
| > Attachment - select fixed
| > Vertical Position - select center
| > Horizontal Position - select center
| > OK|OK|OK|OK & Save As a new theme name
| >
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > | > | See below -
| > |
| > | --
| > | Murray
| > |
| > | | > | >> It's done with CSS -
| > | >
| > | > I've seen this mentioned before but I'm not sure exactly what that
| > means.
| > | > The website mostly uses a theme that I modified from a standard theme
| > and
| > | > then saved to a different name. Within that theme, I use CSS. Is
| > that
| > | > what you mean by CSS?
| > |
| > | Jup - that's the ticket.
| > |
| > | > When I edit the Theme, I selected the background file I want. Is that
| > all
| > | > I need to do within the Theme dialogs?
| > |
| > | I think so.
| > |
| > | >
| > | > When you say external style sheet, I assume I develop that from Format
| > |
| > | > Style and then modify the "body" through "format", "border" and then
| > | > "shading". I then select the background file, etc. in the "Patterns"
| > | > section. Is that correct?
| > |
| > | Sounds right to me.
| > |
| > | >
| > | > As you can probably tell, I need very specific instructions!
| > | >
| > |
| > | You did a pretty good job on your own. Go for it!
| > |
| > | > .
| > | > | > | >>
| > | >> body { background-attachment:fixed; }
| > | >>
| > | >> You could do it globally by linking every page to an external
| > stylesheet
| > | >> that contains that style.
| > | >>
| > | >> I am not sure how this would interact with your theme....
| > | >>
| > | >> --
| > | >> Murray
| > | >>
| > | >> | > | >>>I develop and maintain a website with FP 2000 and I'm in the process
| > of
| > | >>>adding a picture background to the pages that use the default website
| > | >>>theme. I'd like the picture to be centered (i.e. no tiling) within
| > the
| > | >>>browser screen and not scroll when the page is scrolled. First, how
| > is
| > | >>>this done, and second, is there a way to do this globally?
| > | >>>
| > | >>>
| > | >>>
| > | >>>
| > | >>
| > | >>
| > | >
| > | >
| > |
| > |
| >
| >
|
|
 
A

Ada Pan

Hi Bob,

Thanks for your reply. I'm glad to hear the suggestion helps and it is my
pleasure to work with you on this issue!

In case you encounter new issues in the future, feel free to post your
questions in this newsgroup. I'm glad to be of assistance.

Regards,

Ada Pan

Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

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

Top