
I am testing this on my harddrive rather than server.
I am using the border-radius to make circles these circles are put in a UL and it makes my nav bar. so i have a hover shadow. i use spanclass=".circle" next to the text of each link on my nav bar. I am testing pie out on my computer before uploading changes to my website. I dont see any difference in IE. what am i doing wrong?
Code:
.circle {
display: block;
position:relative;
top:5px;
width: 60px;
height: 60px;
background: #7CB5F2;
-moz-border-radius: 40px;
-webkit-border-radius: 40px;
margin-left:5px;
margin-bottom:5px;
border-radius:40px;;
}
.circle:hover{
display: block;
width:60px;
height:60px;
background: #7CB5F2;
-moz-border-radius: 40px;
-webkit-border-radius: 40px;
border-radius:40px;
box-shadow:#666 0px 0px 3px;
}