http://www.awesomescreenshot.com/image/ ... c5a3ff737f
Maybe also if there's a way to add styles to customize the text inside the circle.
I wonder if you could be so kind to help me adjust it.
This is the code I have now:
- Code: Select all
.category-view .category .category-overlay > span > span, .browse-view .product .product-overlay > span > span, .featured-view .product .product-overlay > span > span, .latest-view .product .product-overlay > span > span, .topten-view .product .product-overlay > span > span, .recent-view .product .product-overlay > span > span, .productDetails .main-image .product-overlay > span > span {
-moz-border-radius: 50%;
-moz-transition: all .3s ease-out;
-ms-border-radius: 50%;
-ms-transition: all .3s ease-out;
-o-border-radius: 50%;
-o-transition: all .3s ease-out;
-webkit-border-radius: 50%;
-webkit-transition: all .3s ease-out;
background: #ff7e57;
border-radius: 50%;
color: #fff;
display: block;
filter: alpha(opacity=0);
font-weight: 600;
height: 160px;
line-height: 30px;
margin: 100% auto 30%;
opacity: 0;
text-align: center;
transition: all .3s ease-out;
width: 160px;
}
Thank you in advance!