Okay
  Public Ticket #2390952
Remove Blog Header Image & Meta (Retain Transparent Header)
Closed

Comments

  •  2
    timengelbrecht started the conversation

    Hello! 

    I'm putting together a blog but I would love to know how I can remove the blog header image and meta so I can create my own header with the Salient builder. I would also need the blog menu to remain transparent. 

    I'm having trouble finding an option for this in the Salient menu. 

    Thanks in advance for all your hard work! :) 

  •  3,021
    Andrew replied

    Hi there,

    Try the following custom css in Salient > General settings > CSS/Script related:

    .single #page-header-wrap {
        display: none;
    }
    

    Kind regards.

  •  2
    timengelbrecht replied

    Hi Andrew! 

    Worked a treat, thank you! 

    Only one thing, there seems to be padding or something left over. See attached.


  •  3,021
    Andrew replied

    Hi there,

    Use the following:

    body.single-post.material[data-bg-header="true"] .container-wrap {
        padding-top: 0 !important;
    }
    

    Thanks.

  •  2
    timengelbrecht replied

    Thanks! :)