IE font is too small! Works in Safari great :-(

G

Guest

I am using CSS and have defined my h1 as:
h1
{
color: #FFFbf0;
font size: 110%;
font-weight: bold;
font-variant: small-caps;
}
I cannot figure out why the font is small in IE and have checked my Internet
settings and they are fine. The font is also small in Frontpage Preview Page
but shows up correctly on my Design Page.
Thanks for any insight you can give me!!! I have been working on this too
long :-(
 
S

Stefan B Rusynko

Invalid CSS
Instead of
font size: 110%;
use
font-size: 110%;

And font-variant is not globally supported

PS
You should also define a font using something like
font: Arial;
or
font-family: Arial, Helvetica, sans-serif;


--




|I am using CSS and have defined my h1 as:
| h1
| {
| color: #FFFbf0;
| font size: 110%;
| font-weight: bold;
| font-variant: small-caps;
| }
| I cannot figure out why the font is small in IE and have checked my Internet
| settings and they are fine. The font is also small in Frontpage Preview Page
| but shows up correctly on my Design Page.
| Thanks for any insight you can give me!!! I have been working on this too
| long :-(
 

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

Similar Threads

Problems using CSS in IE6 1
Linik-problem with HTML-CSS 7
CSS 2
<H2> and distance in a CSS 15
Printing from MS IE 7.0 5
from tables to css - I need help 1
Web site normal text 2
Print from Explorer 7. does not work 1

Top