navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Free FrontPage Templates

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

Shared borders in FP2002

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Community >> OutFront Discoveries >> Shared borders in FP2002
Page: [1]
 
Swirl

 

Posts: 2708
From: Cincinnati, Ohio USA
Status: offline

 
Shared borders in FP2002 - 6/12/2002 11:30:44   
Shared borders are a great way to add repeated content like page footers and side navigation bars to your Webs. A shared border is actually a separate Web page, named something like left.htm, that is included in each page you specify in the Shared Borders dialog box (Format | Shared Borders).

With FrontPage 2002, you can assign a unique background color or picture to each shared border, something that wasn't possible previously. To do so, click the Border Properties button in the Shared Borders dialog box or right-click on a shared border and choose Border Properties.

Note, however, that you must have the FrontPage 2002 Server Extensions installed on your server for this new feature to work. Otherwise, your shared borders will continue to inherit the background color or picture of the host page, just as they do in FrontPage 2000.


Diplomacy is the art of letting someone have your way.
Yzywyz

 

Posts: 132
Joined: 6/27/2002
From: Louisville, Kentucky (USA)
Status: offline

 
RE: Shared borders in FP2002 - 7/4/2002 21:37:22   
Is there a way to trim the load time associated with using shared borders? I realize that the browser has to query each file -- is there information that can be trimmed out of a border file to make it load faster?

I' ve already trimmed out all the extraneous parameters and extra spaces, etc. But are there parts of the document that the browser doesn' t read, such as the <head> section or something?

Also, it really adds to the load time to use included pages in a shared border -- the server needs to reference each file, and there are a few seconds tied up just with the query and the HTML headers, not to mention the tangible content of the other file.

_____________________________

-----

I just run the frikkin' maze.

James

(in reply to Swirl)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Shared borders in FP2002 - 7/6/2002 18:37:02   
Shared borders and include pages do add to the response time a little, but very little. So does any server side technology.

I think borders and includes are easily worth in convenience what you give up on response time.

t

(in reply to Swirl)
ChessCentral

 

Posts: 21
Joined: 7/6/2002
Status: offline

 
RE: Shared borders in FP2002 - 7/9/2002 12:04:51   
Hi,

Is it possible to place javascript menus in shared borders? All I seem to get is my menu overlapping the content of the page, when I try to put it in the left border.

Is there a better way to place a javascript menu so that it is on all pages of the website that is 500+ pages? I am using shared borders now on all my pages with a java applet. I tried to make the menu in DHTML but it wouldn' t space correctly and the words (though all I did was change their color on mouseover) moved up and down the page!

Thanks for any help!

Janet

(in reply to Swirl)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Shared borders in FP2002 - 7/10/2002 10:03:00   
You can, but it can be problematic. Just make sure that the function in inside the <body></body> tags. A function in the header of a border or include will not be used by the page that uses the border or include.

Also, relative paths can be tricky when you' re doing that kind of thing.

(in reply to Swirl)
artunframed

 

Posts: 19
Joined: 2/26/2002
From: heysham lancashire United Kingdom
Status: offline

 
RE: Shared borders in FP2002 - 7/11/2002 17:34:27   
Hi,

Just to say, I' ve got a java script drop down menu at www.artunframed.com ( shared top border ) Positioning was tricky though for all screen sizes and browsers.

David

(in reply to Swirl)
caywind

 

Posts: 1479
From: USA
Status: offline

 
RE: Shared borders in FP2002 - 7/12/2002 3:49:02   
quote:

Is there a way to trim the load time associated with using shared borders? I realize that the browser has to query each file -- is there information that can be trimmed out of a border file to make it load faster?
aren' t they in the cache after the first load?

(in reply to Swirl)
MacWeb

 

Posts: 14
Joined: 7/13/2002
From: Sydney, Australia
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 7:53:09   
Greetings, Big Kahuna!

So, does " tricky" mean that you have to use absolute urls if the javascript menu is in a shared border, or can you expand a little on your caution?

Thanks in advance,

Mack




(in reply to Thomas Brunt)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 9:44:02   
Just remember that a relative path that looks like this ../file.htm could be a problem depending upon where the page resides in your web that the user is on. If he' s a couple of folders deep into your web, and file.htm is in your root then that won' t work. You would need ../../, but then that won' t work on other pages.

Pageoneresults posted a tip about this recently. The key is to do this /file.htm instead of ../filename.htm or ../../filename.htm.

That slash in front of the file name will tell the browser to go to the root of the web and start looking from there. ../ tells the browser to go one folder level above the current one.

(in reply to Swirl)
Mike54

 

Posts: 4791
Joined: 3/26/2001
From: Way Up Over
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 11:36:07   
Thomas,

Perhaps you could clarify a bit?

I' ve been setting up Vince' s Popout Menu and tried using the following on a page 3 folders deep in the site
quote:

<LINK REL=STYLESHEET TYPE=" text/css" HREF=" /stylesheet.css" >
<script language=" JavaScript1.2" src=" /popouttext.js" >
</script>

The .js file and the .css files are definitely in the root but I had to use this to get the page to see them
quote:

<LINK REL=STYLESHEET TYPE=" text/css" HREF=" ../../stylesheet.css" >
<script language=" JavaScript1.2" src=" ../../popouttext.js" >
</script>

I have it working ok just looking for some clarification on the path usage.

_____________________________

Who was the first guy that looked at a cow and said, "I think that I'll drink whatever comes out of those things when I squeeze them"?

New photogalleries, stop by sometime.

(in reply to Swirl)
pageoneresults

 

Posts: 1001
From: Orange, CA USA
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 11:46:30   
For external file references, I always recommend absolute URL' s, no matter what!

< Message edited by pageoneresults -- 7/16/2002 12:13:08 PM >


_____________________________

SEO Consultants Directory
Find Search Engine Marketing Companies

(in reply to Swirl)
Mike54

 

Posts: 4791
Joined: 3/26/2001
From: Way Up Over
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 12:06:19   
That' s just it pageone,

If I remove the / and just have
quote:

<LINK REL=STYLESHEET TYPE=" text/css" HREF=" stylesheet.css" >
<script language=" JavaScript1.2" src=" popouttext.js" >
</script>

It doesn' t work. Oh, it works ok on pages at the top level but not on anything one (or more) folders below. The really weird thing is if I change the source to " ../../popouttext.js" (leaving the stylesheet reference as shown above) I (obviously) don' t get the " not defined" error message but a menu shows and it' s not the correct stylesheet.:) It' s a ghost of a format I tried and changed back.:)

Like I said I got it working I just wanted to know more about the how and why. :):):)

_____________________________

Who was the first guy that looked at a cow and said, "I think that I'll drink whatever comes out of those things when I squeeze them"?

New photogalleries, stop by sometime.

(in reply to Swirl)
pageoneresults

 

Posts: 1001
From: Orange, CA USA
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 12:12:03   
Hello Mike54. Every single site I' ve designed, there are over 40 of them, all use absolute URL' s for external file references. There are other issues at hand when using relative URL' s. For one, your style sheets on any FP confirmation pages will not work with any sort of relative URL. That is why you should use absolute. This will eliminate any and all problems that you may encounter when using a relative external file reference.

_____________________________

SEO Consultants Directory
Find Search Engine Marketing Companies

(in reply to Swirl)
Mike54

 

Posts: 4791
Joined: 3/26/2001
From: Way Up Over
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 17:15:11   
OK, any volunteers to " slap me up side the head" ? I gotcha pageone and I' m sure the fact I have this particular menu set up in a subweb is my major problem. Absolute of course always works best. :)


_____________________________

Who was the first guy that looked at a cow and said, "I think that I'll drink whatever comes out of those things when I squeeze them"?

New photogalleries, stop by sometime.

(in reply to Swirl)
pageoneresults

 

Posts: 1001
From: Orange, CA USA
Status: offline

 
RE: Shared borders in FP2002 - 7/17/2002 21:50:53   
Slap! Shazaam! Kapow! Boom! ;)

< Message edited by pageoneresults -- 7/16/2002 9:51:18 PM >


_____________________________

SEO Consultants Directory
Find Search Engine Marketing Companies

(in reply to Swirl)
erinatkins

 

Posts: 3072
From: Mechanicsville VA USA
Status: offline

 
RE: Shared borders in FP2002 - 7/18/2002 11:22:32   
LOL:):)

(in reply to Swirl)
Dario

 

Posts: 90
Joined: 3/27/2002
From: Minneapolis, MN, USA
Status: offline

 
RE: RE: Shared borders in FP2002 - 9/26/2002 18:37:38   
quote:

Thomas Brunt Wrote: You can place javascript menus in shared borders, but it can be problematic. Just make sure that the function in inside the <body></body> tags. A function in the header of a border or include will not be used by the page that uses the border or include.


Thomas,

Could you explain this. I am not sure I follow you.

I am trying to set up such menu. Putting the menu on the shared border would make updates and changes on it much easier. However if you have to include it in the body tag it would defeat the purpose.

Thanks, Dario

< Message edited by dario -- 9/25/2002 6:41:27 PM >

(in reply to ChessCentral)
Page:   [1]

All Forums >> Community >> OutFront Discoveries >> Shared borders in FP2002
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts