Re: [css-d] OVERRIDE Font tag?

2005-05-23 Thread Philippe Wittenbergh
On 24 May 2005, at 9:34 am, Les Mizzell wrote: Is there any way to FORCE an override of the this font tag? Have you tried font { font-size: inherit !important; font-family: inherit !important; color: inherit !important; /* add more properties if needed */ }

RE: [css-d] OVERRIDE Font tag?

2005-05-23 Thread Jon Jensen
Les, Why not try this: font{font-size: 100%;} That seems to do the trick in every major browser. It'll make the text in the font tag the same size as the stuff outside. Additionally, you could strip out the font tags in the database pretty easily: UPDATE mytable SET description =

RE: [css-d] OVERRIDE Font tag?

2005-05-23 Thread Christie Mason
I was thinking something similar, that it would be better to strip the tag info in the db, but the problem may go deeper. Based on very little info, I'd suspect the db isn't optimized. It should be pretty straight forward to be able to manage the presentation of the data in each field at the

Re: [css-d] OVERRIDE Font tag?

2005-05-23 Thread Les Mizzell
Have you tried font { font-size: inherit !important; font-family: inherit !important; color: inherit !important; /* add more properties if needed */ } (This works wonders in my user stylesheet - Firefox and Safari). Of course, IE Win with its half-broken support for 'inherit'

Re: [css-d] OVERRIDE Font tag?

2005-05-23 Thread Felix Miata
Philippe Wittenbergh wrote: On 24 May 2005, at 9:34 am, Les Mizzell wrote: Is there any way to FORCE an override of the this font tag? Have you tried font { font-size: inherit !important; font-family: inherit !important; color: inherit !important; /* add more