Everything is already written with links to an external css file.... The problem is on the user end... When you are using ie, safari, netscape etc and if you are having problems viewing a page some people will click on the text size increase button... When I'm testing my site and I check on the text increase button, the text breaks look awful.... Is there not anyway for me to lock the text in place so users can't use the text increase button, even with applying css the text still breaks when the user hits the text larger button under View-text size
Main Topics
Browse All Topics





by: rajesh75Posted on 2006-02-27 at 13:34:13ID: 16059329
You can use style sheets to fix the font size.
Just add a CSS class to the textboxes on your web page
<input type=text name=text1 class=clsText>
And in the css file with the extension ".css", type in:
.clsText
{
font-size:11px;
}