Good evening everybody,
I am trying to find out how to make png images appear correctly in IE 6.0.
After looking for a solution on the internet i think i have found onehere.
i have copied the codes like the site describes.
and made the .php file lik the site describes.
Still this doesnt seem to work….
Does this have anything to do with expression engine?
And if not, does anybody know a good solution for the .png images in IE??
Thanx!
<?php ob_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Triad Design</title>
<link href="triad.css" rel="stylesheet" type="text/css" />
</head>
<body class="oneColFixCtrHdr">
<div id="container">
<div id="header-triangle"></div>
<div id="header">
</div>
<div id="mainContent">
<div id="leftblock-top">
Bla bla
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>
<?php
include_once 'replacePngTags.php';
echo replacePngTags(ob_get_clean());
?>