-
AuthorPosts
-
June 1, 2017 at 9:27 pm #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
June 2, 2017 at 12:10 pm #802959Hey 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.
June 2, 2017 at 3:37 pm #803063Rikard, thanks for the feedback.
But it lacked how to control the color of the icon.
June 2, 2017 at 3:46 pm #803068Hi,
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,
YigitJune 2, 2017 at 4:54 pm #803101Very good Yigit. It worked.
ANOTHER THING
I noticed that the icons are not aligned with the center of the address text.June 2, 2017 at 5:22 pm #803114Hi,
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,
YigitJune 2, 2017 at 6:31 pm #803156Its 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
}
}June 2, 2017 at 7:02 pm #803166Hi,
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,
YigitJune 2, 2017 at 7:57 pm #803180Ok…tks Yigit
June 2, 2017 at 8:06 pm #803182 -
AuthorPosts
- The topic ‘SOCIAL ICON ON MOBILE’ is closed to new replies.