Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #985126

    Hi,

    On my website I have changed the color of the glassy transparant header with quick CSS so the logo is more visible.
    It works in Chrome and FireFox, but nog in Edge. Can you help me with this?

    Also, I would like the ‘Glassy transparant header’ to be transparant green as it is now and the ‘transparant header’ to be its normal color, because it works better for some pictures, for example on page ‘nieuws & agenda’. Is that possible?

    #985563

    Hey macmutsaers,
    This is because Edge doesn’t recognize your color, it has too many digits for a hex value:

    header#header {
        background-color: #606d488f;
    }

    Please adjust to a 6 digit hex value, or use rgba:

    rgba(96, 109, 72, 0.56);

    Best regards,
    Mike

    #985624

    Hi Mike,

    Thank you very much.
    Do you also know if it’s possible to have 2 different color headers?
    I would like the ‘Glassy transparant header’ to be transparant green as it is now and the ‘transparant header’ to be its normal color,

    Kind regards,
    Angela

    #985643

    Hi,
    Yes you can assign your green to only some pages or to the “before scroll” header if you have a sticky header.
    The “transparent header” would be the normal color for where you don’t have the green.
    But right now you don’t have a sticky header, so where do you want the green to show and not show?

    Best regards,
    Mike

    #985655

    HI Mike,

    Thanks for your quick response!
    I woud like the homepage header to be green and the page ‘nieuws en agenda’ to be the normal color.
    For the other pages I don’t know yet, because that content comes later.

    Kind regards,
    Angela

    #985660

    Hi,
    I added the page id to your css so that it will only work on your home page:

    #top.home header#header {
        background-color: rgba(96, 109, 72, 0.56);
    }
    

    If you decide to add this header color to another page add a comma and it’s page id with the target to the rule like this:

    #top.home header#header,#top.page-id-693 header#header {
        background-color: rgba(96, 109, 72, 0.56);
    }

    For all other pages please use the layout options in the editor
    2018-07-15_092928
    Please clear your browser cache and check.

    Best regards,
    Mike

    #985661

    You are fantastic! Thank you very much!

    #985668

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Transparant header’ is closed to new replies.