Originally Posted by AF
Luckily for you, I'm an HTML pro :hsugh:
CSS.
You'll need to use stylesheets to accomplish what you want. Just google it and you'll find it.
Put this in between your <head></head> tags and then inside your <body></body> tags you use 2 different divs. And you'll have a box in the middle of your page whether in FF or IE.
IF confused lemme know.. I'll send you my file.
<div class="ie_fix">
<div class="box">
Blah Blah Blah
</div>
</div>
-----
<style type="text/css">
input {
border: 1px black solid;
font: 8pt courier;
background-color: #EEEEEE;
margin-bottom: 1pt;
}
a {text-decoration: none;}
.box {
border: dotted 1px black;
width: 500px;
padding: 10px 0px 0px 10px;
text-align: left;
margin: 0 auto;
border: 1px dotted black;
}
.ie_fix {
width: 100%;
text-align: center;
}
</style>
---