Forum Moderators: not2easy
Here's an example of the code/CSS:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
body, html {
height: 100%;}
#vertcontainer {
position: relative;
height: 100%; overflow: visible;
}
#container {
position: relative;
top: 40%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
</style>
</head>
<body>
Thanks in advance for your insites.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
body, html {
height: 100%;}
#vertcontainer {
position: relative;
height: 100%; overflow: visible;
}
#container {
position: relative;
top: 40%;
margin-left: auto;
margin-right: auto;
text-align: center;
vertical-align: middle
}
</style>
</head>
<body>
<div id="vertcontainer">
<div id="container">
The first line of text<br><br>
The second line of text.<br><br>
The third line of text.<br>
</div>
</div>
</body>
</html>