Removing header image and text from template

I’d like to remove the header image and text at the top of this landing page:

I’m told by Support that the info to be removed lives here:

Is this the right info to move? If not, what do I delete?

<div class=“body-wrapper {{ builtin_body_classes }}”>
{% block header %}
{% global_partial path=“../partials/header.html” %}
{% endblock header %}

Thank you!

Hey @jackieru

Thank you for the information provided. I’ll tag a few experts.

Hey @John @piersg @Kevin-C what would you advise @jackieru ?

Thanks

Sharon

Thanks @sharonlicari

Hey @jackieru

If you just remove the block header this should get you want you’re looking for.

Do be aware that modifying this template with be global, so any pages also using the template will be effected.

{% block header %}
{% global_partial path="../partials/header.html" %}
{% endblock header %}

If you need to remove it from only this page, you could duplicate the teamplate or apply css like this to the page:

.custom-header-wrapper {
 display: none!important;
 visibility: hidden!important;
}