CSS Style Sheet Fonts

  • Thread starter Thread starter OKR
  • Start date Start date
O

OKR

I use FP 2003 and work on several webs at the same time.
I am using css style sheets to designate the font.
Recently something happened that no matter what font I
use in the style sheet I get Arial when I look at it in a
browser. This has happened in all my webss. Any help?
 
Are these pages online? Can you provide a URL for us to look at? What font
do you _expect_ to see?
 
The URL is http://www.atcnet.net. I have forced the font
on this page by formatting the tables. Look at the
Company link. http://www.atcnet.net/company.htm and you
can see the normal text is arial and the hyperlinks are
Verdana. All the text should be Verdana 8 pt. I have also
forced the Verdana font in the include pages on the left
and right of the main body.
 
You seem to be having inheritance problems. Possibly related to your use of
a theme. You can manually edit the css and change this

TABLE {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
TEXT-DECORATION: none
}

To

TABLE, TD, TH {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
TEXT-DECORATION: none
}

or edit, your theme, save with a new name and apply the updated theme to
your site.
 
See your duplicate post
- you have badly mangled html w/ lots of duplicate body tags and sections

--




| The URL is http://www.atcnet.net. I have forced the font
| on this page by formatting the tables. Look at the
| Company link. http://www.atcnet.net/company.htm and you
| can see the normal text is arial and the hyperlinks are
| Verdana. All the text should be Verdana 8 pt. I have also
| forced the Verdana font in the include pages on the left
| and right of the main body.
|
| >-----Original Message-----
| >Are these pages online? Can you provide a URL for us to
| look at? What font
| >do you _expect_ to see?
| >
| >--
| >Jack Brewster - Microsoft FrontPage MVP
| >
| message
| >| >> I use FP 2003 and work on several webs at the same
| time.
| >> I am using css style sheets to designate the font.
| >> Recently something happened that no matter what font I
| >> use in the style sheet I get Arial when I look at it
| in a
| >> browser. This has happened in all my webss. Any help?
| >
| >
| >.
| >
 
Your suggestion doesn't solve the problem. The style
sheet works on a test sheet with text between the body
tags. I know I have duplicate body tags in most of my
pages but the style sheet worked anyway at one time even
with thoswe tag problems. It is a problem that happened
all at once and to every page in all my webs. I'm at a
loss...so far
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top