body { font-size: 10pt; color: #FFFFFF; font-family: verdana, arial,
helvetica, sans-serif}
With this, the family sets OK, but the size remains at 12pt (default for
FP2000). If you remove the 'family' statement, the size works perfectly,
but I need both to work at once. I wrote this by hand, and FP comes up with
a similar thing if you use it's CSS editor. I've read somewhere that putting
the 'family' part at the end might help, but this hasn't worked either. Any
ideas?
I've also heard that you can set the page background colour within a page
using CSS - a quick example of this would be great, if I'm not getting too
greedy! : ) Cheers.
To style the background, use:
bacground: #feed00;
Probably best to refer to http://www.w3.org/tr/rec-css1
"Haydn Williams" <hay...@hotmail.com> wrote...
"Rowland Shaw" <spamf...@anotherpointless.org> wrote in message
news:Oto8kAM9AHA.2280@tkmsftngp05...
I am not THE expert on this, but this is exactly, what I monitor anytime
with IE:Not (especially tables) all elements inherit from BODY......
Best regards,
Manfred Braun
(Private)
Lange Roetterstrasse 7
D68167 Mannheim
Germany
mailto:_mbr...@manfred.mannheim-netz.de
Phone : +49-621-37 53 86
(Remove the anti-spam-underscore to mail me!)
"Haydn Williams" <hay...@hotmail.com> wrote in message
news:eAncEUM9AHA.1916@tkmsftngp03...
"Haydn Williams" <hay...@hotmail.com> wrote...
I read this and sad "aha". Today, while needing real inheritance, I
remembered this, but it did not work!!!!
body {font-size:8pt;}
tbody {background-color:green;}
<body ...................
<table>
<thead...............
</thead>
<tbody>
<tr><td>The font-size is larger than in the body;Nothing
inherited!!</td></tr>
</body................
<html>
I read in ohter (non-MS) newsgroup clear statements from real CSS experts,
that this, what MS has implemented is not real CSS2. Anyway, I dont like it.
Some properties are inherited, others not.
Best regards,
Manfred Braun
(Private)
Lange Roetterstrasse 7
D68167 Mannheim
Germany
mailto:_mbr...@manfred.mannheim-netz.de
(Remove the anti-spam-underscore to mail me!)
"Rowland Shaw" <spamf...@anotherpointless.org> wrote in message
news:eojaFj$9AHA.1840@tkmsftngp03...
<style>
body {font:8pt verdana, tahoma, arial}
table {font-size:8pt}
</style>
Works great.
"Haydn Williams" <hay...@hotmail.com> wrote in message
news:ua6jbJG9AHA.1900@tkmsftngp04...