Our Scripts Vault contains many game scripts that you can use to create your own game!
function beginMenu($img){echo'<div><img src=images/mt.png>';echo"<div style=\"position:relative; left:12; top:-16; height:0;\" ><img src=images/$img.png></div>";echo'</div><div class=menu>';}function endMenu(){echo'</div><div><img src=images/mb.png></div>';}
<!-- Menu --><div> <img src="<?php echo $img_path1 ?>" /> <div style="position:relative; left:12; top:-16; height:0;" ><img src="<?php echo $img_path2 ?>" /></div></div><div class=menu></div><div> <img src="<?php echo $img_path3 ?>" /></div>
in IE6 "height"="min-height"overflow(-x|-y): hidden solves many problems there though it's not so nice way
Drop support for IE6 Tongue Youtube is doing it, all will follow and all will upgrade to IE7 or 8 soon. You didn't support IE5 when IE7 came out did you? So why bother with IE6 when IE8 is out?
Just out off curiosity, why are you echoing all that stuff? I'm not very experienced in building websites yet but one of the things I learned is that it's not very clean. Why don't you do something like this? (I assume you have your reasons, but I'd like to know what they are. The same for not using css for the <img src=images/mt.png>.)
Can I assume, if the HTML/CSS works with both IE6 & FF, will it work with all other major browsers/versions?
"height"="min-height" does not work.