Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #452101

    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!

    #452111

    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

    #452126

    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!

    #452141

    You can change that in the Theme Options (set white on General Styling > Header and gray in Header > Transparency Options).

    Regards,
    Josue

    #452145
    This reply has been marked as private.
    #452149

    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

    #452155

    Gracias!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Header Opacity’ is closed to new replies.