Tagged: background, gradient, icon
Viewing 7 posts - 1 through 7 (of 7 total)
-
AuthorPosts
-
August 12, 2013 at 5:29 pm #27647
Hi, i would like to add a gradient background to the icons, not just a simple color.
Thanks
August 13, 2013 at 1:59 am #134815Hi,
Which icons do you want to add background to? Iconlist? Iconbox?
Regards,
Ismael
August 13, 2013 at 5:18 pm #134816Hi,
To the iconlist
Thanks!
August 13, 2013 at 5:33 pm #134817also de iconbox, sorry, but i’m talking about de circle that is the background of the icons
August 13, 2013 at 5:36 pm #134818Hi,
You can use this on your custom.css or Quick CSS
.avia-icon-list .iconlist_icon {
background: #bfd255; /* Old browsers */
background: -moz-linear-gradient(top, #bfd255 0%, #8eb92a 50%, #72aa00 51%, #9ecb2d 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfd255), color-stop(50%,#8eb92a), color-stop(51%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* IE10+ */
background: linear-gradient(to bottom, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */
}For the iconbox, you can use this:
.iconbox_top .iconbox_icon {
background: #cedce7; /* Old browsers */
background: -moz-linear-gradient(top, #cedce7 0%, #596a72 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cedce7), color-stop(100%,#596a72)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #cedce7 0%,#596a72 100%); /* IE10+ */
background: linear-gradient(to bottom, #cedce7 0%,#596a72 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 ); /* IE6-9 */
}This is a nice website to create gradient backgrounds: http://www.colorzilla.com/gradient-editor/
Regards,
Ismael
August 13, 2013 at 6:29 pm #134819Thanks!
August 13, 2013 at 7:57 pm #134820 -
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)
- The topic ‘Adding gradient background to icons’ is closed to new replies.