I am facing a strange problem. I have some links to social networks with border-radius
and with hover
of edge rotation, as in the image below:
WhenIgivehover
tothesesocialnetworklinks,adiv
thereonanotherpartofthesitelosesitsborder-radius
.Example:
I have no idea what this interference might be, as each one of you is your class. Anyone know?
Online preview . (I believe the problem is in the slider plugin - Cycle2)
CSS for social networking links:
.link-social { width:31px; height:31px; display:inline-block; }
.link-social:before {
display:block; content:""; width:31; height:31px; border:1px #DF9201 solid;
-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;
}
.link-social:hover:before {
border:1px #DF9201 dashed;
transform:rotate(36000deg); -webkit-transform:rotate(36000deg); -moz-transform:rotate(36000deg);
transition: all 500s ease; -webkit-transition: all 500s ease; -moz-transition: all 500s ease; -o-transition: all 500s ease;
}
CSS of the round div:
.shape-slideshow { width:617px; height:617px; -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%; overflow:hidden; }