Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #27647

    Hi, i would like to add a gradient background to the icons, not just a simple color.

    Thanks

    #134815

    Hi,

    Which icons do you want to add background to? Iconlist? Iconbox?

    Regards,

    Ismael

    #134816

    Hi,

    To the iconlist

    Thanks!

    #134817

    also de iconbox, sorry, but i’m talking about de circle that is the background of the icons

    #134818

    Hi,

    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

    #134819

    Thanks!

    #134820

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Adding gradient background to icons’ is closed to new replies.