Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting up default page specifications

Status
Not open for further replies.

Lunytic

Technical User
Nov 20, 2003
21
0
0
US
Using Frontpage 2002, is it possible to set it up so every page loads with some code?

I can's seem to find a way. I tried the "set default like this page", but that didn't seem to work.

We're using shared borders, but FP defaults to the space to the left and on top of the borders. We've gotten around that with <body topmargin="0" leftmargin="0">, but we have to do that too all new pages. Is there a way to hardcode that into either the specific web, or FP2002?

Secondarily, there is also a <style></style> set we want to put on every page.

Ideas? Thanks.
 
Well in your style sheet, add:
Code:
BODY
{
margin: 0px;
}
To add the style sheet, try to go to Format - Style Sheet Links. This is on FP 2003, but hopefully on FP XP as well.

You might consider using SSI (Server Side Includes) instead of Shared borders. The borders are dependent on the FP extensions.

__________________________
Corey

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top