Hello,
I am trying to customize my 404 page in my MINIMAL theme.
I want to remove the footer and add a background image, search bar and text. Currently I’m stuck.
Below is what I have done so far and I have wound up with a lot of nothing. I’m not sure where I have gone wrong so any help greatly appreciated.
Here is what I’ve done:
*duplicated my store; added theme.404-layout.liquid
*entered the code below to 404.liquid to link that to the new theme.404-layout.liquid :
{{ 'general.404.title' | t }}
{{ 'general.404.subtext_html' | t: link: routes.all_products_collection_url }}
{% layout "404-layout" %}{{ 'general.404.title' | t }}
{{ 'general.404.subtext' | t }}
{{ 'general.404.link' | t }}{% include 'icon-arrow-right' %}
At the bottom of the 404-layout.liquid I added this code:
footer { display:none; }At the bottom of theme.scss.liquid I added my image:
#custom-404-page {
background-image: url(“https://cdn.shopify.com/s/files/1/0570/1474/7276/files/404PAGEIMAGE.jpg?v=1644947421”);
}
My store is https://www.TheWaterCanShop.myshopify.com
Password is ahdohy


