Number Font Size FP 2002

G

Guest

I am using FP2002 and a bulleted list Arial Font 10. The numbers are
appearing as Arial Font 12. Style is not available to change the font from
the set up or from List Properties. How can I correct this so that the font
can be changed to match the text?
 
S

Stefan B Rusynko

Create a style

ul {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: normal;
}

ol {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: normal;
}

li {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: normal;
}

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am using FP2002 and a bulleted list Arial Font 10. The numbers are
| appearing as Arial Font 12. Style is not available to change the font from
| the set up or from List Properties. How can I correct this so that the font
| can be changed to match the text?
 
W

Windsun

PT sizes are for print, not screen fonts. Sometimes you get some odd results
with different browsers.
 
P

Paul C

Hi
Windsun is correct, use 10px instead of 10pt. You will have to adjust the
size to suit but I find 11px or 12px good for normal text
best wishes
Paul M
 
G

Guest

Stefan
Thanks for the response. Bear with me I am fairly new to FP. I tried
copying the code you sent and using FP2002 placed in on my page in HTML View.
When I go to the Normal View it has the same info that I copied and pasted.
So I am not understanding what to do with the info. Please advise.

Lori
 
S

Stefan B Rusynko

That is a CSS style
Added in as either a linked external style sheet
Or in the HEAD section inside of style tag
<style>
ul {
...........
</style>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Stefan
| Thanks for the response. Bear with me I am fairly new to FP. I tried
| copying the code you sent and using FP2002 placed in on my page in HTML View.
| When I go to the Normal View it has the same info that I copied and pasted.
| So I am not understanding what to do with the info. Please advise.
|
| Lori
|
| "Lori" wrote:
|
| > I am using FP2002 and a bulleted list Arial Font 10. The numbers are
| > appearing as Arial Font 12. Style is not available to change the font from
| > the set up or from List Properties. How can I correct this so that the font
| > can be changed to match the text?
 

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

Top