Remove Home Title

Hi,

Can you please tell me how to remove page titles on specific pages?

I have unchecked the ‘check to show title in top call out box’ option. I am talking about the title given to each page.

There are some that I want to keep and some I want to remove.

Thanks

Hi @shahidul,

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

First please tell me specifically which title do you want to remove as shown in the attached screenshot so that i can help you?

Kind Regards,
Movin

Hi Movin,

Sorry to be difficult but can you tell me how to do it for both.

I have set it to not show the header no.1. I would however like to show this header on certain pages and not on others. This is the same for no.2.

Hope you can help.

Thank you

Hi Movin,

Also is there a way I can add space above header 2? It should affect all pages that show header 2.

Thanks

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 -> Shapely Options -> Other


body.page-id-733 section.page-title-section {
    display: none;
}

The above CSS code will remove the first header title and following CSS code will remove the second title.


body.page-id-733 article header.entry-header {
    display: none;
}

You can add space above header 2 using the below CSS code.

body.page-id-733 article header.entry-header {
    margin-top: 15px;
}

You have to change the page ID 733 in the above CSS code to the page ID on which you want to apply the changes. You can find find page ID as described here WordPress Page ID - Where to Find It | Compete Themes

Hi Movin,

Thanks. They worked superbly.

Just out of curiosity, is there any way to add a magin in the header 2 area after it has been disabled. I have tried when header 2 is not displayed and nothing happens. I may want to use this in the future.

Thank you.

Hi,

Thanks. I’m almost happy…How can I remove the extra top margin from header 2?

It looks a much better if there is same amount of empty space in top & below.

Hi Movin,

Any idea on how I would add space to a woocommerce page, a page that I did not create through the wordpress pages area.

Please visit Link to see.

I would like the space between the navigation bar and the content below.

Thank you.

@shahidul

Just out of curiosity, is there any way to add a magin in the header 2 area after it has been disabled. I have tried when header 2 is not displayed and nothing happens. I may want to use this in the future.

You can try using below CSS code to achieve this.

body.page-id-1694 #main article {
    margin-top: 15px;
}

@speciaali To help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/shapely/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.

@shahidul

Any idea on how I would add space to a woocommerce page, a page that I did not create through the wordpress pages area.

I would like the space between the navigation bar and the content below.

To help us keep support thread separates could you please create new thread for your other questions here Shapely - Colorlib Support Forum instead of asking them in your single thread as it makes the thread messy and hard to read.