Remove Banner and Text from Blog Page.

Hi! How can I remove the banner, text, and date showing on my blog page? I’ve checked some code suggestions given to others, but nothing seems to match my theme. I don’t have the elements mentioned in those codes. Any help would be appreciated!
Website - www.verdin.la

Hi @verdin_verdin ,
Can you kindly share the details of your problem (link page) with us? We will check it and suggest you a solution if possible.

Hi, thanks for getting back to me! Here is the blog page - https://verdin.la/blogs/verdin-x-kate/kate-olive-for-verdin

1 Like

@verdin_verdin - which page are you looking to change?

Hi, I’m looking to remove this banner from all Blog Pages. Here is one that is visible now - https://verdin.la/blogs/verdin-x-kate/kate-olive-for-verdin

@verdin_verdin - please add this css to the very end of your base.css file and check

.template-article .header-banner{display:none; visibility:hidden;}

Hi @verdin_verdin ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% assign full_url = request.host | append: request.path %}
{% if full_url contains 'blogs' %}

{% endif %}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Where is this base file? All I see is this:

Thanks SO MUCH! It worked!!!

1 Like