Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #546062

    Hello,
    Can you please help me change the opacity in the header from this link:
    http://testsite.cityofwinters.org/city-hall/

    to this:

    https://projects-cityofwinters.squarespace.com/#major-projects

    Thank you.

    #546072

    Hey rmavila!

    When you edit your page look on the right hand side and you’ll see the layout options. You can set the header to transparent there.

    Best regards,
    Elliott

    #546088

    I need the code to change the opacity/transparency level as I showed in those links.

    I don’t want the header to be complete clear.

    #546093

    Hey!

    It shouldn’t be completely clear when you set it transparent. There is also a “glassy transparent” style which will make it even more opaque.

    You can change the opacity with this CSS.

    .header_color .header_bg {
        background-color: rgba(255,255,255,0.4) !important;
    }

    But that’s not going to do anything because there is nothing behind the header.

    Regards,
    Elliott

    #546098

    Thank you Elliot. Is there anyway to change the opaque to a dark color instead of light?

    #546124

    Hi!

    You can change the overall color, by adjusting the RGB values (like the example below):

    .header_color .header_bg {
        background-color: rgba(25,25,25,0.4) !important;
    }

    Cheers!
    Dake

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