I have a header using text and seem to be having trouble using CSS to position it correctly. I prefer not to use an image to do this. I have the header set to 940px in length and would like the height to be 100px. I am able to position the header in the spot I want using a fixed position. However, when I add more content to the page and if scrolling the text seems to move further down the page.
Can anyone tell me how to position the text to stay centered in the header to the left? I currently have no set hight for the header and have managed to get the text to move from the margin of the header by using margin-left
Here is the site as it stands. http://www.tour-niagara.com
Here is my css code as it stands.
#header {
border-bottom-style: solid;
border-color:#FFFF00;
border-top-style: hidden;
width: 940px;
background-color:#0033CC;
font-family:candara; color:#CCCCCC;
}
.headertext {
margin-left:10px;
font-size:xx-large;
}
