Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #802777

    In mobile, the icons of social networks appear with a white border and a dark color. How to remove the border and change the color?

    I’m viewing on iphone 7.

    Link

    #802959

    Hey mleite1,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks li {
      border-color:yellow !important;
    }
    .responsive #top #header_meta .social_bookmarks li a {
      background: purple !important
    }
    }

    Best regards,
    Rikard

    • This reply was modified 7 years, 5 months ago by Rikard.
    #803063

    Rikard, thanks for the feedback.

    But it lacked how to control the color of the icon.

    #803068

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta .social_bookmarks li a {
      color: orange !important
    }
    }

    Best regards,
    Yigit

    #803101

    Very good Yigit. It worked.

    ANOTHER THING
    I noticed that the icons are not aligned with the center of the address text.

    #803114

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .av_icon_active_right .social_bookmarks { padding: 0!important; }}

    Best regards,
    Yigit

    #803156

    Its ok now…..

    Do I need to use all these codes above ^^^?

    /*SOCIAL ICONS MOBILE*/
    @media only screen and (max-width: 767px) {
    .av_icon_active_right .social_bookmarks { padding: 0!important; }}

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks li {
    border-color:#120A2A !important;
    }
    .responsive #top #header_meta .social_bookmarks li a {
    background: #120A2A !important
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta .social_bookmarks li a {
    color: white !important
    }
    }

    #803166

    Hi,

    Yes, but here goes a simplified version :)

    /*SOCIAL ICONS MOBILE*/
    @media only screen and (max-width: 767px) {
    .av_icon_active_right .social_bookmarks { padding: 0!important; }
    .responsive #header .social_bookmarks li {
    border-color:#120A2A !important;
    }
    .responsive #top #header_meta .social_bookmarks li a {
    background: #120A2A !important
    color: white !important
    }
    }

    Best regards,
    Yigit

    #803180

    Ok…tks Yigit

    #803182

    Hi!

    You are welcome mleite1 :) Enjoy your weekend

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘SOCIAL ICON ON MOBILE’ is closed to new replies.