I’d like to change the opacity in 2 ways. I’d like to change the opacity of the two sections independently. Any idea how?
Thanks!
Hey!
Try adding this code to the Quick CSS:
.header_bg {
display: none;
}
#top .av_header_transparency #header_main{
background-color: transparent;
}
/* adjust this */
#top #header_meta {
background-color: rgba(255,255,255,0.5);
}
#top #header_main {
background-color: rgba(255,255,255,0.2);
}
Cheers!
Josue
GREAT thanks. But now I need to make the grey icons white ONLY when I scroll. So grey first then WHITE when I scroll and the header color comes in.
Thanks!
You can change that in the Theme Options (set white on General Styling > Header and gray in Header > Transparency Options).
Regards,
Josue
Try with the following CSS code:
#top .social_bookmarks li a {
color: white;
}
#top .av_header_transparency .social_bookmarks li a {
color: gray;
}
Best regards,
Josue
Gracias!