Hi there,
I added the facebook social icon to the header. I have the transparent header on start of the page, before user scrolls down. As it shows the same color as the rest of the menu, is there a way to change the color for the facebook social icon into blue with white background ?
And once the user scrolls down, I would like to have the background in blue and the icon in white.
I really love working with this theme! Finally I found a theme, where the developers are really pros in what they do!
Kind regards,
Bettina
Hi bettina246!
Add this to your custom CSS.
.av_header_transparency .social_bookmarks_facebook a::before {
background: none repeat scroll 0 0 white;
color: blue;
padding: 10px;
}
.social_bookmarks_facebook a::before {
background: blue;
color: white;
padding: 10px;
}
Cheers!
Elliott