Hi,
I'm having trouble working on a project for a client. I'm new to using css positioning and DIVs and I've made some kind of mistake that I can't identify. The project is a medical form that I'm recreating from a PDF file.
I am using DIV containers to position the different form boxes and headers and I cannot get the text in the lower header to show.
Can someone please help ASAP? I'm on a deadline for this project.
Here is the code:
<DIV class="leftHeader">
<P>HORMONE ASSAY</P>
</DIV>
and the css for this DIV
.leftHeader {
background-color:#5B5B5B;
color:#ffffff;
font-weight:bold;
font-family:Verdana,Arial,sans-serif;
font-size:24px;
text-align:center;
position:fixed;
left:30px;
top:605px;
bottom:150px;
width:35%;
padding:5px;
height: 30px;
margin:0px auto;
}
The text "hormone assay" is not showing, only the grey background no matter what I do! There are two other DIVs above this one and the grey background has to be the same width as the DIV above it which it is...that's not a problem...its that the text wont show. It is showing in Microsoft Expression Web but not on the page itself in either browser.
Thanks!
--Allen