function over(){
document.getElementById("logoie").src="logorollover.jpg";
}
function out(){
document.getElementById("logoie").src="logo.jpg";
}
also tried using
function over(){
var imgsrc=document.getElementById("logoie").getAttribute("src");
document.getElementById("logoie").setAttribute("src",
"logorollover.jpg");
}
function out(){
var imgsrc=document.getElementById("logoie").getAttribute("src");
document.getElementById("logoie").setAttribute("src", "logo.jpg");
}
IE 6 is one pain in my butt, when I develop a website, I usually have to check in IE 6 if it looks good on it. I suggest you create a simpler type of your website fitted on IE 6. Where is your visitor's the highest? Focus on those visitors because they are the one's you want to look good with.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum