How to hide or remove Page title and footer

Hi,

There are 2 sections that I wanted to remove, and I need help on how.

The first one is the large Page Title located on top of page (please refer to attached image:Untitled-2)

Second, if the footer (please refer to the image: foot)

Thank you very much :slight_smile:

Hey there,

I hope you are well today and thank you for your question.

  1. To Remove the footer sections simply replace it with your own content, to hide it completely you can use the following CSS.
    Admin Area -> Appearance -> Customize -> Additional CSS
/*remove footer*/
#footer > div.container{
  display:none;
}
#footer .bottom-footer,{
    margin-top: 0px;  
}
#footer {
  padding-top:0px;
}
  1. You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*Hide page header*/
.page .bottom-header {
  display:none;
}

Best regards,
Support.

as always. Thank you very much!

Hi, there

Nice, to hear your problem is fixed:) Now I will now close the topic and mark it as resolved.
Feel free to contact us again Thanks!