1<!-- FIXES FOR IE6: 2The logo and other images should be able to use transparent pngs. Since 3internet explorer 6 does not support them, I use the script 'iepngfix.htc'. 4However, the script cannot handle the background shadow of the content div. 5So we have to rebuild these elements without the shadow. 6--> 7 8<!--[if lt IE 7]> 9<script type="text/javascript"> 10 // This must be a path to a blank image. Used by 'iepngfix.htc' 11 if (typeof blankImg == 'undefined') var blankImg = '<?php echo DOKU_TPL."images/blank.gif"?>'; 12</script> 13<style type="text/css"> 14 div.dokuwiki { 15 margin: 0px 9px; 16 border-left: 1px solid black; 17 border-right: 1px solid black; 18 background-image: none; 19 background-color: white; 20 width: 690px; /* miraculously needed when a right aligned image is taller 21 than the text on a page */ 22 } 23 div#breadcrumbs { 24 background-image: none; 25 background-color: #bbddd4; 26 margin: 9px 9px 0 9px; 27 border-right: 1px solid black; 28 border-top: 1px solid black; 29 border-left: 1px solid black; 30 padding: 3px 6px 3px 6px; 31 } 32 div#footer { 33 background-image: none; 34 background-color: #bbddd4; 35 margin: 0px 9px 9px 9px; 36 border-right: 1px solid black; 37 border-bottom: 1px solid black; 38 border-left: 1px solid black; 39 border-top: none; 40 padding: 10px 18px 11px 18px; 41 } 42 43 div#navigation ul li a { border: none; margin: 0px 1px; } 44 div#navigation ul li a:hover { border: 1px solid black; margin: 0px 0px; } 45 textarea#wiki__text { width: 650px; } 46 47 img { 48 behavior: url(<?php echo DOKU_TPL."iepngfix.php"?>); 49 } 50</style> 51<![endif]--> 52