Log in

View Full Version : images on top of one another?



Anexxion
07-24-2008, 10:37 PM
im trying to get two images on top of one another, here is my case:

RESOLVED

http://i34.tinypic.com/nco3v6.jpg
how its supposed to look:
preview: www.voigrafic.com/gamesite
code:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>

<style type="text/css">
body {
background: #222222 url(http://www.voigrafic.com/gamesite/images/res_bg.gif);
margin:0;
padding:0;
height:250px;
}

#container {
background-color: transparent;
width:85%;
margin: 0 auto;
}

#gheader {background: #FFFFFF url(http://www.voigrafic.com/gamesite/images/gheader.gif) repeat-x top; height:33px;}
#leftwing {background: transparent url(http://www.voigrafic.com/gamesite/images/leftwing.png) left; height:98px; background-repeat:no-repeat;}


</style>
</head>
<body>
<div id="leftwing">
<div id="gheader"></div>
</div>
</body>
</html>