Topic:Frontpage and background sharing Remainpoint:0
   
PostTime:12/16/2008 3:27:41 PM FloorTop
Lv is 1
Avatar
Level:
1
Professional point:
8
Experience:
13
Thread:
275
Post:
917
Total online time:
13M
Joined date:
4/28/2007 11:37:00 PM
Last Visit:
12/16/2008 11:49:17 PM
Status:
Offline
Alright, i got this working using a different type of frontpage, but now im using frontpage 2003. I want to be able to get one new page to share the background of another page (in my case, the index page). So this way i can change the background of the index page, and then the rest of the website pages change their backgrounds to reflect the index's page. I cant find anything that enables me to do this, and when i look at the other pages that already have this enabled (where i used a different frontpage), they just seem to have an unchangable colour. I guess ill add a few small shot below, and if you want to, ask more questions.
 
     
   
Gender PostTime:12/16/2008 4:08:30 PM Point:0 | Floor# 1
Lv is 1
portrait
Level:
1
Professional point:
32
Experience:
5
Thread:
287
Post:
980
Total online time:
5M
Joined date:
4/29/2007 12:12:00 AM
Last Visit:
12/16/2008 11:58:01 PM
Status:
Offline
I'm a Dreamweaver user myself, but how about these ways?
  1. First, Front Page does allow you to make themes. Can you just make one an apply it to a group of pages (like I said, I don't know how that works)
  2. Second, can you just do a find and replace over several documents? That works in Dreamweaver pretty well.
  3. Third, if there is no easy way, just do it by hand, unless you have 100 pages to do. If that is the case, just to a find and replace.
  4. Fourth, use CSS like the person said above. CSS is very simple to use! Here is snipit of code that you can apply to your pages:
    Code:
    BODY {background-color: #FFFFFF}
    Save that into a file called whateveryouwant.css.
    Then, to link that, place this within the header of your page:
    Code:
    <LINK href="whateveryouwant.css" rel="stylesheet" type="text/css">

Now, whenever you change the background color in the CSS file, it'll automatically change it in all of the pages. Also, be aware that if the page is in a different directory than the CSS file, you need to make sure that the link href is pointed correctly to the CSS file. I'm sure you already know that, but I've seen it many times where someone put a page in a different directory and did not update the CSS location. If those don't work, do a very simple search for CSS and background colors on Google, AV, Yahoo, etc.
 
     
   
Gender PostTime:12/16/2008 4:41:34 PM Point:0 | Floor# 2
Lv is 1
portrait
Level:
1
Professional point:
64
Experience:
3
Thread:
277
Post:
897
Total online time:
3M
Joined date:
4/28/2007 11:25:00 PM
Last Visit:
12/16/2008 11:33:11 PM
Status:
Offline
I'm running 2002 and if you open Page Properties > Background, there is an option at the bottom of the window stating 'Get background information from another page'. Check the box, click browse and select your index file.

If this isn't an option in 2003, the following appears to be the html that is making it happen (substitute your index file name for index.html) if you'd like to paste into your code view after (</head>) and give it a try.

<body stylesrc="index.html">

</body>
 
     
   
Gender PostTime:12/16/2008 4:49:40 PM Point:0 | Floor# 3
Lv is 1
portrait
Level:
1
Professional point:
64
Experience:
3
Thread:
277
Post:
897
Total online time:
3M
Joined date:
4/28/2007 11:25:00 PM
Last Visit:
12/16/2008 11:33:11 PM
Status:
Offline
So if i copy this part of the code in, will it function in the right way where it takes the index pages' background?

Quote:

Save that into a file called whateveryouwant.css.
Then, to link that, place this within the header of your page:
Code:

<LINK href="whateveryouwant.css" rel="stylesheet" type="text/css">


Now, whenever you change the background color in the CSS file, it'll automatically change it in all of the pages. Also, be aware that if the page is in a different directory than the CSS file, you need to make sure that the link href is pointed correctly to the CSS file. I'm sure you already know that, but I've seen it many times where someone put a page in a different directory and did not update the CSS location. If those don't work, do a very simple search for CSS and background colors on Google, AV, Yahoo, etc.

In this situation im begining to believe a CSS file is just like the index page, and your using this code to take the background from either files. I havnt even created a CSS file yet anyway.

Hope all this editing hasnt confused people, as its easier to say things than say them right.
 
     
   
Gender PostTime:12/16/2008 5:29:30 PM Point:0 | Floor# 4
Lv is 1
portrait
Level:
1
Professional point:
48
Experience:
8
Thread:
292
Post:
962
Total online time:
8M
Joined date:
4/28/2007 11:08:00 PM
Last Visit:
12/17/2008 12:44:40 AM
Status:
Offline
Bump. Ill need more detailed instructions here.
 
     
   
Gender PostTime:12/16/2008 5:40:52 PM Point:0 | Floor# 5
Lv is 1
portrait
Level:
1
Professional point:
0
Experience:
1
Thread:
260
Post:
1020
Total online time:
1M
Joined date:
4/28/2007 11:06:00 PM
Last Visit:
12/17/2008 12:56:13 AM
Status:
Offline
Use an external CSS file, specifing the "body" background and then linking to it on each page. If you want to change the background, just change the CSS.
 
     
   
Gender PostTime:12/16/2008 5:51:04 PM Point:0 | Floor# 6
Lv is 1
portrait
Level:
1
Professional point:
5
Experience:
19
Thread:
290
Post:
993
Total online time:
19M
Joined date:
4/28/2007 11:08:00 PM
Last Visit:
12/17/2008 12:44:18 AM
Status:
Offline
So if i copy this part of the code in, will it function in the right way where it takes the index pages' background?

Quote:

Save that into a file called whateveryouwant.css.
Then, to link that, place this within the header of your page:
Code:

<LINK href="whateveryouwant.css" rel="stylesheet" type="text/css">


Now, whenever you change the background color in the CSS file, it'll automatically change it in all of the pages. Also, be aware that if the page is in a different directory than the CSS file, you need to make sure that the link href is pointed correctly to the CSS file. I'm sure you already know that, but I've seen it many times where someone put a page in a different directory and did not update the CSS location. If those don't work, do a very simple search for CSS and background colors on Google, AV, Yahoo, etc.

In this situation im begining to believe a CSS file is just like the index page, and your using this code to take the background from either files. I havnt even created a CSS file yet anyway.

Hope all this editing hasnt confused people, as its easier to say things than say them right.
 
     
   
Gender PostTime:12/16/2008 6:00:30 PM Point:0 | Floor# 7
Lv is 1
portrait
Level:
1
Professional point:
2
Experience:
12
Thread:
278
Post:
932
Total online time:
12M
Joined date:
4/28/2007 11:48:00 PM
Last Visit:
12/16/2008 11:40:44 PM
Status:
Online
Wait i just put myself in a loop. So far i could only manage to figure out that it will take an image from image type files (bmp.jpg....). I may as well also note that this isnt just an image, its a simple colour. Want to avoid all the fuss and just get me to copy and paste that part of the code for that colour?
 
     
   
Gender PostTime:12/16/2008 6:15:34 PM Point:0 | Floor# 8
Lv is 1
portrait
Level:
1
Professional point:
71
Experience:
5
Thread:
316
Post:
950
Total online time:
5M
Joined date:
4/28/2007 10:49:00 PM
Last Visit:
12/16/2008 11:39:24 PM
Status:
Offline
Quote:
Originally Posted by Jay_JWLH
Not the best type of answer i would like right now, seeing as i like to keep it all working in design view. You may want to tell me more about this (how to create it). Still, other answers will still be appreciated.

You can still use design view with CSS. I'm on a different computer at the moment that doesn't have FrontPage on it, but from my memory, this is roughly how you do it:
  1. Create a new CSS file within the directory (might be possible with "New page from template").
  2. Open the CSS file in FrontPage (double-click).
  3. A floating toolbar should pop up. Click on "Style..."
  4. There you will see a list of HTML tags. Click on the body one.
  5. There should be like some "Format..." button or dropdown box. I think choose the border option.
  6. Then there should be a background tab or something like that.
  7. Choose the background color.
  8. Then, go back to your page and go to something like this: Format > Style...
  9. There should be some dialog box to link to the CSS file. Do that with every page.
  10. Change the CSS body element and watch every page change.

I'll get back to my PC with FrontPage on Wednesday...
 
     
   
Gender PostTime:12/16/2008 6:31:41 PM Point:0 | Floor# 9
Lv is 1
portrait
Level:
1
Professional point:
38
Experience:
20
Thread:
263
Post:
936
Total online time:
20M
Joined date:
4/28/2007 10:44:00 PM
Last Visit:
12/17/2008 12:58:22 AM
Status:
Offline
Wait i just put myself in a loop. So far i could only manage to figure out that it will take an image from image type files (bmp.jpg....). I may as well also note that this isnt just an image, its a simple colour. Want to avoid all the fuss and just get me to copy and paste that part of the code for that colour?
 
     
   
Gender PostTime:12/16/2008 7:05:06 PM Point:0 | Floor# 10
Lv is 1
portrait
Level:
1
Professional point:
0
Experience:
11
Thread:
265
Post:
940
Total online time:
11M
Joined date:
4/28/2007 10:35:00 PM
Last Visit:
12/16/2008 11:40:39 PM
Status:
Offline
Not the best type of answer i would like right now, seeing as i like to keep it all working in design view. You may want to tell me more about this (how to create it). Still, other answers will still be appreciated.
 
     
1 2 3

Sorry, you are not login, click here to login

 

About us | Advertise | Contact us | Partner | Bug Report|Suggesting box|Donation
Home | Forum | Affiliate program| Remote help | Setting | Search | Document | Help | Download|Message

 

Start new topicAdvanced search
Your location: Web designer -> Frontpage