Okay
  Public Ticket #2290218
Product title header
Closed

Comments

  • Nick started the conversation

    Hello there,

    Is there a way I can remove this product title?

  •  3,022
    Andrew replied

    Hi Nick,

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

    .woocommerce-page #page-header-bg h1 {
        display: none;
    }
    

    Hope this helps.

  • Nick replied

    Hi Andrew,

    This does indeed get rid of the title, but not the block it is placed in.

    Is it possible to remove the entire block?

  •  8,992
    Tahir replied

    Hey Again,

    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):

    .woocommerce-page #page-header-bg {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Nick replied

    Thank you Tahir,

    This works! 

    The only problem I have now is there's a large empty space where the header used to be.

    Can that be scripted out too?

  •  3,022
    Andrew replied

    Hi Nick,

    Use the following css:

    #page-header-wrap{
        height:0 !important;
    }
    

    Hope this helps.

  • Nick replied

    YES!

    Thank you Andrew, this is perfect