Header Image Display Issue
I am applying the concepts of this book to building my own site and I am having an issue with displaying my header image size 814px X 200px. Specifically, the image displays fine in VWD, but as soon as I do ctrl + F5 to view in the browser there is no image diplayed. Here is my CSS code.
*
{
font-family: Tahoma,Verdana,Sans-Serif;
}
body
{
background-color: #dcdcdc;
margin: 10px000;
}
h1
{
font-size: 1.25em;
}
#PageWrapper
{
margin-left: auto;
margin-right: auto;
width: 814px;
border: 15pxdoublewhite;
}
#MenuWrapper
{
background-color: white;
width: 794px;
height: 50px;
padding-left: 10px;
padding-right: 10px;
}
#Header
{
background-image: url(/Images/header.jpg);
width: 814px;
height: 200px;
}
#MainContent
{
background-color: White;
width: 794px;
font-size: 0.8em;
padding: 10px;
min-height: 380px;
}
#Footer
{
background-color: black;
width: 814px;
height: 37px;
color: White;
text-align: center;
font-size: 0.7em;
font-weight: bold;
line-height: 37px;
}
Thank you!
|