Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #638282

    Hi – I am looking to have these social icons to show the colors that is currently shown when you hover it. Bascially I want to reverse it so you can see the colors. As well if can make the squares into round. I tried border-radius: 100px !important in the CSS and still doesn’t change.

    Here is what I have in the footer 1 widget:
    <ul class=”noLightbox social_bookmarks icon_count_2″><li class=”social_bookmarks_twitter av-social-link-twitter social_icon_1″><span class=”avia_hidden_link_text”>Twitter</span><li class=”social_bookmarks_linkedin av-social-link-linkedin social_icon_2″><span class=”avia_hidden_link_text”>Linkedin</span>

    CSS:
    #footer .social_bookmarks li {
    clear: none !important;
    border: 0 !important;
    border-radius: 100px !important;
    font-size: 16px;
    }

    #638853

    Hey Devon,

    use this code:

    #footer .social_bookmarks li {
    background-color: blue !important;
    }
    

    Best regards,
    Andy

    #638948

    Thanks, however is there a way to not have both of them showing the same blue? As well when you hover the social media icons, is there a way to remove the square box?

    #639398

    Hi,

    for twitter use this:

    #top #wrap_all .av-social-link-twitter:hover a {
    background-color: #46d4fe;
    }
    

    and for linked in:

    #top #wrap_all .av-social-link-linkedin:hover a {
    background-color: #46d4fe;
    }
    

    Adjust colors as needed.

    Best regards,
    Andy

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.