Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Drag and Drop Not working on Latest Version of Enfold #476169

    Yes it happens in Firefox, Chrome, and Safari and on multiple computers. You guys have had this issue before. Usually updating to latest theme fixes it though.

    in reply to: Social Media icons styling help #415823

    Thanks. This got me started in the right direction. Just in case anyone else needs it below is all the CSS I ended up with. It allowed me to center the icons, made the margin smaller for mobile only and added a little hover effect.

    .avia_codeblock .av_font_icon {
    margin-right: 30px;
    }

    .avia_codeblock .av_font_icon:hover {
    opacity: .8;
    filter:alpha(opacity=80); /* For IE8 and earlier */
    }

    .avia_codeblock .av_font_icon {
    display: inline-block;
    float: none;
    }

    @media only screen and (max-width: 767px){
    .avia_codeblock .av_font_icon {
    margin-right: 20px;
    }
    }

Viewing 2 posts - 1 through 2 (of 2 total)