hi.
just learning about rollovers using css. seems the first time IE does it i get a flicker...than the rest of the browsing section is fine. was wondering what i can do to fix this. my set up has a header with a background image that than has div for each button. each div has a background image...a pic of a letter that then gets a bit of a glow when its rolled over. here is the css i have. would appreciate some suggetions. site can be viewed at www.meshowventures.com
#button1 a {
width: 104px;
height: 97px;
float: left;
padding-left: 86px;
background-image: url(images/home1.png);
background-repeat: no-repeat;
background-position: 85px;
}
#button1 a:hover {
width: 104px;
height: 97px;
float: left;
padding-left: 86px;
background-image: url(images/home2.png);
background-repeat: no-repeat;
background-position: 85px;
}
just learning about rollovers using css. seems the first time IE does it i get a flicker...than the rest of the browsing section is fine. was wondering what i can do to fix this. my set up has a header with a background image that than has div for each button. each div has a background image...a pic of a letter that then gets a bit of a glow when its rolled over. here is the css i have. would appreciate some suggetions. site can be viewed at www.meshowventures.com
#button1 a {
width: 104px;
height: 97px;
float: left;
padding-left: 86px;
background-image: url(images/home1.png);
background-repeat: no-repeat;
background-position: 85px;
}
#button1 a:hover {
width: 104px;
height: 97px;
float: left;
padding-left: 86px;
background-image: url(images/home2.png);
background-repeat: no-repeat;
background-position: 85px;
}
Comment