Create a new theme: Blank

  • Thread starter Thread starter Latitude
  • Start date Start date
L

Latitude

Front Page 2002 help provides the following instructions:

1. On the FORMAT menu, click THEME.
2. In the list, select a theme on which you want to base your new theme.
Under tip:
....Or, select the BLANK theme.

There is not "BLANK" theme. What are we doing wrong?

We want to have a very simple theme with the following 3 elements:
Fonts: we want to specify font type and sizes to various Headings and
Hyperlink (regular and followed)
Page background color
Horizontal line color

Can we create a theme for just these 3 elements from an existing web page?
If yes, how?

Thanks, Cecil:)
 
Try reinstalling FP and add the BLANK theme (custom install additional themes), or using any one of the other themes to modify (and
save as a new theme name)

--



| Front Page 2002 help provides the following instructions:
|
| 1. On the FORMAT menu, click THEME.
| 2. In the list, select a theme on which you want to base your new theme.
| Under tip:
| ...Or, select the BLANK theme.
|
| There is not "BLANK" theme. What are we doing wrong?
|
| We want to have a very simple theme with the following 3 elements:
| Fonts: we want to specify font type and sizes to various Headings and
| Hyperlink (regular and followed)
| Page background color
| Horizontal line color
|
| Can we create a theme for just these 3 elements from an existing web page?
| If yes, how?
|
| Thanks, Cecil:)
|
|
|
 
For your description I would create an external CSS file and apply it to all
pages rather than use a theme.
e.g.

body{
background-color: Yellow;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 100%;
}
hr{ color: Fuchsia;}
h2{ color: Lime;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 110%;
}
a:link{ color: Blue; }
a:visited { color: Purple;}
a:active{ color: Red; }
a:hover{ color: Gray; }

(If you use the above, either change the colours first, or wear dark glasses
:-) )
The HR colour may not be supported in all browsers.
 
Back
Top