Hello Mike,
Simply change the following bolded snippets in this stylesheet from:
Code:
#main-one {
position: absolute;
float: left;
z-index: 1200;
top: 65px;
width: 330px;
height: 315px;
overflow: hidden;
}
#main-one:hover {
background: #f8981d;
}
#main-two {
position: absolute;
float: left;
z-index: 1201;
top: 65px;
width: 295px;
height: 175px;
margin-left: 335px;
padding-left: 40px;
padding-top: 140px;
}
#main-two:hover {
background: #008752;
}
#main-three {
position: absolute;
z-index: 1202;
top: 385px;
width: 290px;
height: 175px;
padding-left: 40px;
padding-top: 140px;
}
#main-three:hover {
background: #008752;
}
#main-four {
position: absolute;
z-index: 1202;
top: 385px;
width: 295px;
height: 175px;
margin-left: 335px;
padding-left: 40px;
padding-top: 140px;
}
#main-four:hover {
background: #f8981d;
}
to:
Code:
#main-one {
position: absolute;
float: left;
z-index: 1200;
top: 65px;
width: 330px;
height: 315px;
overflow: hidden;
}
#main-one:hover {
background: url('../image/image1.jpg');
}
#main-two {
position: absolute;
float: left;
z-index: 1201;
top: 65px;
width: 295px;
height: 175px;
margin-left: 335px;
padding-left: 40px;
padding-top: 140px;
}
#main-two:hover {
background: url('../image/image2.jpg');
}
#main-three {
position: absolute;
z-index: 1202;
top: 385px;
width: 290px;
height: 175px;
padding-left: 40px;
padding-top: 140px;
}
#main-three:hover {
background: url('../image/image3.jpg');
}
#main-four {
position: absolute;
z-index: 1202;
top: 385px;
width: 295px;
height: 175px;
margin-left: 335px;
padding-left: 40px;
padding-top: 140px;
}
#main-four:hover {
background: url('../image/image4.jpg');
}
What version of IE are you using?
Bookmarks