header and big title section same background, emmet theme

Free and Premium WordPress Plugins & Themes Forums WordPress Themes Emmet header and big title section same background, emmet theme

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #325630
    Jonas
    Guest

    I would like the header and the big title section to use the same background picture. How is that possible?

    #325668
    Jonas
    Guest

    so basicly it should work with making the header transparent. I tried
    .site-header{
    background:transparent;
    }

    in simple css but the header background remains white.
    what can i do?

    Thanks,
    Jonas

    #325855
    J. Davis
    Keymaster

    Hi Jonas,

    Yes, you have made .site-header class transparent but there is also .main-header one with white background. Please refer to styles below on how to achieve the desired result:

    .main-header{
    background:transparent;
    }
    .site-header{
    background:rgba(50,65,85,0.75);
    }
    
    .site-header:after{
    display:none;
    }

    Best regards,
    John

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.