How can I delete a page title in Debut Theme?

Hello friends…

I would like to remove the title of the following page:

https://forexpoly.com/pages/forexpress

It contains a PNG logo, so I do not need the text version!

I have found other solutions for other themes but they does not work on mine!

I appreciate any help!

regards

tony

Hi @tonyvaloz ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
.template-page .section-header > h1 {
    display: none;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

1 Like

Thank you @AvadaCommerce

but… would you know any code for only this page: https://forexpoly.com/pages/forexpress

and not all pages.

I am afraid the code needs any ID tag or something like that

thank you again for your help!

regards

tony

Hi @tonyvaloz ,

you can try follow the instruction below:

  1. Go to Online Store → Theme → Edit code.

  2. Layout/theme.liquid and add code below in the tag like image.

id="{{ page_title | handle }}"


3. Asset → /theme.css paste code below into end of the file.

#forexpress .drawer-page-content .grid__item.medium-up--push-one-twelfth .section-header >h1 {
    display: none;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

@tonyvaloz , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. In your theme.liquid file, find the (press CTRL + F or command + F on Mac)
  3. paste this code right above the tag:

Kind regards,
Diego

1 Like

Thank you for your detailed explanation @Halothemes but it didn´t work!

I have checked carefully several times and didn´t work

Hi, @tonyvaloz

Please try the solution aforementioned, let me know if it doesn’t work.

Kind regards,
Diego

1 Like

@diego_ezfy It works !!!

Thank you very much!!!