Okay
  Public Ticket #2496573
Page header overlay
Closed

Comments

  •  21
    Sanjay started the conversation

    Hi. Am I able to change the opacity of a page header overlay? I can see in the theme options you can for the blog (posts), but not for pages.

    Any ideas? Thanks

  •  2,965
    Andrew replied

    Hi Sanjay,

    Edit the page and check on page header settings

    4563619115.png


    Thanks.

  •  21
    Sanjay replied

    That only gives me the option to add the overlay, but doesn't give me any option on the opacity of the overlay...

  •  2,965
    Andrew replied

    Hi Sanjay,

    Use the following custom css:

    .page-header-bg-image {
        opacity: 0.6;
    }
    

    Hope this helps.

  •  21
    Sanjay replied

    Ok. This code works, but it only changes from the original opacity set in the system. It's doesn't give a true 0.9 which is what I'm after. It is 0.9 of the system opacity setting...

    https://vidyamethod.com/meditation-training-program/

    This is a 0.9 which is still very dark...

  •  21
    Sanjay replied

    See below

  •  8,854
    Tahir replied

    Hey Again,

    Change the value as per your liking.

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .page-header-overlay-color:after {
        opacity: 0.9 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  21
    Sanjay replied

    Perfect thanks!