RE: [xsl] view text size

Subject: RE: [xsl] view text size
From: "Hunsberger, Peter" <Peter.Hunsberger@xxxxxxxxxx>
Date: Mon, 26 Aug 2002 10:21:04 -0500
> i have an xsl page which is calling a .css
> when viewing the page in IE 6 and then going to View -
> Text Size - Larger or Smallest etc in the toolbar, the
> text on the screen remains the same. nothing changes.
> The text is in a table which is in a layer.

Your CSS is specifying absolute font sizes (eg. font-size: 14pt; or
font-size: 14px;  or something similar).

Change it to use relative sizes (eg. font-size: 80%; or font-size:
smaller;).

Note that if you use relative sizes styles will show the inheritance from
each other, so if your table set's  font size 80% and your cell sets font
size 80% you will end up with a font size of 64% of the base you started
from (80% of 80%)...  So, you've got to pay a little more attention to how
the various css classes are defined and used.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread