Style Sheets

D

Denny

I am experimenting with using style sheets. However, when
FP creates the sheet, the only options are h1, h2, h3,
h4, h5 & h6, which are all in BOLD Text. How do I get the
style sheet to specify a text that is a specific point
size that is not bold?

Thanks!
 
M

MD WebsUnlimited.com

Hi Denny,

This is done by using a class selector e.g,

<p class="myClass">Webs Unlimited</p>

To change the font family the Style sheet could be:

<style type="text/css" >
..myClass { font-family: Arial; }
</style>

In FP this would be changed using the Format | Style | New | enter the Name
(selector) myClass | Format | Font
 
J

Jens Peter Karlsen [FP MVP]

There are no other header styles in html. You can use CSS to change
their default display like this:

h1 {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 14px; font-weight: normal;
}

As you can see I have told it not to be bold.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
J

Jens Peter Karlsen [FP MVP]

If it is supposed to be a header, h1..h6 should be used.
How they look can be changed as described.
This because reading applications for the blind treat them
differently.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 

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