Jump to content

Why wont my background images show up?


mike12255

Recommended Posts

Hello, im trying to set background images using a css file but I just cant get them to show up and I have no idea why. The paths are correct ive checked that, any help is appriciated.

 

here is my CSS:

@CHARSET "UTF-8";

* * {
margin:0;
padding:0;
background-color:black;

}

#box {
margin-left:auto;
margin-right:auto;
width: 992px;
margin-top:none;
}

#header {
height: 222px;
background-image:url('..images/header.jpg');
z-index: 5;
}

#menu {
background-image:url('..images/menu_bar.png');
height:100px;
position: absolute;
left: 0px;
top: 190px;
z-index: 10;

}

 

 

and here is the html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel = "stylesheet" type="text/css" href=" styles/main_style.css" >
</head>
<body>
<div id = "box">
<div id ="header"><img src="images/header.jpg"/></div>
<div id="menu">
<ul>
<li>test</li>
</ul>

</div>

</div>

</body>
</html>

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/239345-why-wont-my-background-images-show-up/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.