PDA

View Full Version : Text size


Frank42
09-17-2003, 04:52 AM
I found an issue while working on my asp.net pages in VB. When you open the browser everything looks fine. If a user clicks view and text size and changes the size to larger all my pages are distorted. The text boxes are merged and you cant read them. Does anyone have a solution for this?

bruce
09-17-2003, 05:50 AM
i think you can specify the size in a style sheet.

[b]quote:Originally posted by Frank42

I found an issue while working on my asp.net pages in VB. When you open the browser everything looks fine. If a user clicks view and text size and changes the size to larger all my pages are distorted. The text boxes are merged and you cant read them. Does anyone have a solution for this?
</blockquote id="quote"></font id="quote">

steurm
09-17-2003, 11:58 AM
yep,

you should set this in your stylesheet (or via an instyle-declaration, see example): set the font-size property to a fixed value.
[quote]
<style>
body{font-size:11px}
</style>
</CODE>

--
Steurm
www.steurm.net/steurm

Frank42
09-26-2003, 08:11 AM
I ended up using a % instead of an actual size. It seemed to do the trick. thanks for the comments