How to remove Title from Landing Page in Dawn

Hello,

I would like to remove the title under the Landing Page Image in Dawn. Can you please advise?

@GIREGGIA - can you please share your page link?

@GIREGGIA

Please share your store URL!

Thanks!

@suyash1 @dmwwebartisan

https://www.suit-of-lights.com/

Hello @GIREGGIA
Please share your website URL.

Hi!

Here’s a code snippet that’ll work:

{% if template == 'index' %}
{% style %}
.card__content {
    display: none;
}
{% endstyle %}
{% endif %}

Insert that into your theme.liquid file (online store > themes > click ‘…’ on the theme you want, then ‘edit code’). Insert it at the bottom of the file, right before the ‘’ tag.

The code makes sure it’s on your home page, since it’s a pretty general selector, then hides the whole title.

Alternatively, you can also use the app Easy Edits to make the edit yourself without touching any code. You and just click the title element in the editor and set ‘display’ to ‘none’. You can make the edit and delete the app without paying for anything, and keep the edits.

Fair disclaimer, Easy Edits is an app I’ve worked on. If you need any help inserting the code or using the app, just let me know!