|
CSS Load Image Not Working
I have problem my top images not load for some reason other one has. Any ideas the top menu bar showing but rest not
CSS Code Layout
html,body {
background: #e7e7e7;
font-family: Arial, Helvetica, sans-serif;
color: #202020;
padding: 0px;
margin: 0px;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0px auto -60px;
}
#top-menu {
height: 57px;
width: 100%;
background-image: url(../images/top-menu-bg.jpg);
}
#top-row {
background-image: url(../images/top-bg.png) top left repeat-x;
width:100%;
}
#top-bg {
background-image: url(../images/top-row-bg.png) top center no-repeat;
width:100%;
}
HTML Code Layout
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Website Home</title>
<link rel="stylesheet" href="css/template.css" type="text/css">
</head>
<body>
<!--Wrapper-->
<div id="wrapper">
<!--Top-Menu-->
<div id="top-menu">
</div><!--Top Menu Div End-->
<div id="top-row">
<div id="top-bg">
</div>
</div>
</div><!--Wrapper Div End-->
</body>
</html>
|