Hi there again....
I have managed to create a small test template to try some of the techniques mentioned here in this thread.
Seen Here:
http://www.powerbitwebdesign.com/cli...wman/test.html
However the png header is not transparent. I have saved it as a png-8 file with Matt = Black and with transparency settings but it is not allowing the background image to show through as seen in this example:
http://www.powerbitwebdesign.com/cli...mple-light.jpg
Any thoughts as to what has gone wrong?
I am using Photoshop 7
This has only been tested in MOZ
Also here is my code:
CSS
HTML Code:
/* stylesheet-1 Document */
body {
background: #fff;
font:76% arial, verdana, helvetica, sans-serif;
}
* { margin:0; padding:0;
}
#wrapper {width:1006px; margin:0 auto;
}
#logo {background: #000 url(logo.jpg) top left no-repeat; width:250px; height:120px; float: left;
}
#banner {background: transparent url(header.png) top left no-repeat; width:756px; height:120px; float:left;
}
/* ------- Section Pages ------- */
#environment {background: #000 url(bg.jpg) no-repeat; width:1006px; height:750px;
}
HTML
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>New Man Test</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="title" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="includes/stylesheet-1.css" />
</head>
<body>
<div id="wrapper">
<div id="environment">
<div id="logo"></div>
<div id="banner"></div>
</div>
</div>
</body>
</html>
Bookmarks