Ask a Question related to ASP, Design and Development.
-
Michael #1
how to preset the default font size for a web page?
Hi,
How can I set my default display font size, type for a web page, or a
<table>?
I dont want to write <font size=....> everywhere, especially inside each
<td>.
I know this is HTML question, kindly please help to tell me.
Thanks
Michael
Michael Guest
-
Default font size increases
One section at a time, I'm converting to templates for use with Contribute. After changing, some pages of the section have started using a default... -
Default Page Size in v8 for pc
Somehow I now get a metric envelope size as the default page size (DL Env 110x220mm) instead of the usual 'letter' page size. Have reselected... -
Can headers and footers have default font style and size
Is there a way to set a default font style and size for headers and footers in Acrobat 6.0.1 so that they do not have to be reselected every time? -
Change default font and text size
I would like to change the defult text size from 24 to something else for all new documents that I open. How can I do that without having to create a... -
Default Browser font size?
Can anyone tell me what the default font size (in points) in the Preferences/Option is for Netscape and Explorer - Windows and Mac?? I'm trying... -
mark | r #2
Re: how to preset the default font size for a web page?
<head>
<style>
td{font-size:10px;font-family:arial,helvetica,sans-serif;}
</style>
</head>
now everything inside a td will have a font size of 10pixels (very small)
the font-family attribute sets the face, note theres three here
mark
"Michael" <vbado2003@yahoo.com.sg> wrote in message
news:uQYMgFMXDHA.2352@TK2MSFTNGP12.phx.gbl...> Hi,
>
> How can I set my default display font size, type for a web page, or a
> <table>?
> I dont want to write <font size=....> everywhere, especially inside each
> <td>.
>
> I know this is HTML question, kindly please help to tell me.
>
> Thanks
> Michael
>
>
>
mark | r Guest
-
CJM #3
Re: how to preset the default font size for a web page?
Use CSS. Ideally a LINKed CSS.
Try [url]www.w3schools.com/css/[/url] for a tutorial.
In the CSS, include one of the following definitions:
body { font-size: 85%; }
or
body { font-size: 0.9em; }
or
body { font-size: x-large; }
Notes: You can set the font-size to be x number of pixels but this is bad
from an accessibility point of view. The above options all allow the user to
resize the text using browser settings. In most browsers, using explicit
pixel sizes prevents this.
Also Mac users often see smaller text than Windows users:
[url]http://db.tidbits.com/getbits.acgi?tbart=05284[/url]
hth,
Chris
CJM Guest



Reply With Quote

