Number Font Size FP 2002

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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?
 
PT sizes are for print, not screen fonts. Sometimes you get some odd results
with different browsers.
 
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
 
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
 
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?
 
Back
Top