Default Font for entire Site - how to set up

M

mkr

How can I setup default font type & size for the entire site so that all
existing and new pages of that site use that font and when any dta is entered
in those pages they automatically use he same font & size?
There is a default font setting in Tool menu Page Options but that seems to
have limited application, font without size for design and font with size for
code.
 
S

Stefan B Rusynko

Create a CSS style sheet and apply it to all pages in the site
The style sheet would contain say:

body {
font-size: 100%;
font-family: Arial, Helvetica, sans-serif;
color: black;
}
caption, th, td {
font-size: 100%;
font-family: Arial, Helvetica, sans-serif;
color: black;
}

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


How can I setup default font type & size for the entire site so that all
existing and new pages of that site use that font and when any dta is entered
in those pages they automatically use he same font & size?
There is a default font setting in Tool menu Page Options but that seems to
have limited application, font without size for design and font with size for
code.
 

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