FYI
Editing any FP theme .css file does not stick in FP
- FP will reread the original .css from the compacted theme .elm file whenever you recalculate hyperlinks or open / apply the theme
Always edit the theme in FP, not it's .css files
For info on how to unpack a theme .elm file and edit it's packed .css files see
http://sbrenjoy.bizland.com/frontpage/themes/newthemes.html#Granular
And yes there are multiple references to theme fonts in the Theme css files & below is what they are used for:
graph0.css - Normal Graphics Selections / Changes to theme (from .elm file)
graph1.css - Active Graphics Selections / Changes to theme (from .elm file)
color0.css - Normal Color Selections / Changes to theme (from .elm file)
color1.css - Active Color Selections / Changes to theme (from .elm file)
theme.css - Font Selections to theme
custom.css - Created only if you modify a theme, collects Changes to above & any styles
themename1111.css - Created only if you Apply theme using css - combines All of above
--
| On Sun, 31 Jul 2005 06:12:05 -0700, "Barbara"
|
| >I hate to beat a dead horse, but I SWEAR I've done all the steps everyone
| >told me to - saving new theme, removing old theme, applying new theme, yada
| >yada. But nothing works. This is becoming my life's goal, just for the
| >principal of the dang thing.
![Smile :) :)](/styles/default/custom/smilies/smile.gif)
|
| I'm sure we're not addressing the question here. I don't know about FP
| later than 2000 but I'm looking at that huge CSS and seeing the
| following:
|
| .mstheme-vert-navtxt
| {
| font-family: Sylfaen;
| color: rgb(0, 0, 0);
| font-size: 3;
| font-style: normal;
| font-weight: bold;
| text-align: center;
| vertical-align: middle;
| }
|
| Now I have the Sylfaen font on my machine so if the CSS is doing its
| stuff I should be seeing it. So something else, either lower down in
| the CSS, or lower down the cascade, is telling the vertical navbar to
| display Comic Sans.
|
| Further down the CSS, we have this:
|
| .mstheme-vert-navtxt-g
| {
| font-family: Comic Sans MS;
| color: rgb(0, 0, 0);
| font-size: 3;
| font-style: normal;
| font-weight: bold;
| text-align: center;
| vertical-align: middle;
| }
|
| and this:
|
| .mstheme-vert-navtxt
| {
| font-family: Comic Sans MS;
| color: rgb(0, 0, 0);
| font-size: 3;
| font-style: normal;
| font-weight: bold;
| text-align: center;
| vertical-align: middle;
| }
|
| Could either of those classes be relevant in this case?
|
| fido