Luther
11-09-2003, 06:25 AM
Does anyone know how to "lock in place" the position of html text on a webpage? I'm referring to text that has been positioned where I want it on the page using layout tables and cells. I'm making it so the text is of fixed pixel size---so that the text always will appear the same size---regardless of which "text size" (smallest, smaller, medium, larger, largest) is the current setting on a typical web browser.
The way I'm making text on a webpage stay fixed at a certain pixel size is by using the following code in a page's head section:
<head>
<style type= "text/css">
.bodytext {font size: 15px}
.heading {font size: 19px}
</style>
</head>
Each line of text in the body of the page can have these classes ("bodytext" or "heading") applied to them. The result is that the size of the text always stays the same when viewed through a browser. However, when a user tries different text size settings on the browser, the position of the lines of text still changes with each setting. The best way to see what I'm talking about is to look at this example at www.lakeinthewoods.org. Try adjusting the text size to different settings---you'll see that the position of the text on the homepage jumps around, it doesn't stay "locked" in the middle.
If you check out www.cnn.com or www.si.edu. you'll see that no matter what text size setting you try, the size and position of all text on the page stays locked in place--exactly where the designer meant it to be. This is what I am trying to achieve. How is it done?
Maybe the way to do this involves using css exclusively, and not working with html tables and cells?
Thanks,
Chris Flanders
cflanders@adelphia.net
The way I'm making text on a webpage stay fixed at a certain pixel size is by using the following code in a page's head section:
<head>
<style type= "text/css">
.bodytext {font size: 15px}
.heading {font size: 19px}
</style>
</head>
Each line of text in the body of the page can have these classes ("bodytext" or "heading") applied to them. The result is that the size of the text always stays the same when viewed through a browser. However, when a user tries different text size settings on the browser, the position of the lines of text still changes with each setting. The best way to see what I'm talking about is to look at this example at www.lakeinthewoods.org. Try adjusting the text size to different settings---you'll see that the position of the text on the homepage jumps around, it doesn't stay "locked" in the middle.
If you check out www.cnn.com or www.si.edu. you'll see that no matter what text size setting you try, the size and position of all text on the page stays locked in place--exactly where the designer meant it to be. This is what I am trying to achieve. How is it done?
Maybe the way to do this involves using css exclusively, and not working with html tables and cells?
Thanks,
Chris Flanders
cflanders@adelphia.net