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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.