Hello,
Im in trouble..I have an anchor link with a background hover image that is defined in css. Everything works well except ie7(ie6 is not needed thank god). It does not show the background image for this link. I can get background color, but image wont work...Id be thankful for some advice how to get the bg image visible on ie7.
I need to hold on to this div structure. Here is my html and css:
<div id="container">
<div id="box">
<a href="#" class="linkclass" onclick="showpopup();">click here</a>
</div>
</div>
#container {
width:276px;
min-height:616px;
float:right;
}
#box{
background: url(boxbg.png) no-repeat; /*works ok*/
min-height:562px;
width:276px;
font-size:17px;
}
a.linkclass {
background:url(bg.png)no-repeat scroll center center; /*not working */
overflow:visible;
color:white;
cursorointer;
width: 204px;
height:21px;
margin-left:14px;
font-size:13px;
text-align: center;
padding:20px;
}
a.linkclass:hover {
background: url(bg.png)no-repeat scroll center center; /*not working*/
color:black;
}
Im in trouble..I have an anchor link with a background hover image that is defined in css. Everything works well except ie7(ie6 is not needed thank god). It does not show the background image for this link. I can get background color, but image wont work...Id be thankful for some advice how to get the bg image visible on ie7.
I need to hold on to this div structure. Here is my html and css:
<div id="container">
<div id="box">
<a href="#" class="linkclass" onclick="showpopup();">click here</a>
</div>
</div>
#container {
width:276px;
min-height:616px;
float:right;
}
#box{
background: url(boxbg.png) no-repeat; /*works ok*/
min-height:562px;
width:276px;
font-size:17px;
}
a.linkclass {
background:url(bg.png)no-repeat scroll center center; /*not working */
overflow:visible;
color:white;
cursorointer;
width: 204px;
height:21px;
margin-left:14px;
font-size:13px;
text-align: center;
padding:20px;
}
a.linkclass:hover {
background: url(bg.png)no-repeat scroll center center; /*not working*/
color:black;
}