New Shopify Certification now available: Liquid Storefronts for Theme Developers

Replace header with image

Solved
AlanIanIngram
Tourist
11 1 1

I have a few pages listed below that I want to replace the header with a image.

 

The page screenshots are listed below with a circle around the header that I want to replace with an image,

 

thank you.

 

The website is Priinttern.com

 

Screenshot_20231014_173231_Chrome.jpgScreenshot_20231014_173258_Chrome.jpgScreenshot_20231014_173314_Chrome.jpg

 

 

Accepted Solution (1)
biznazz101
Shopify Partner
293 23 43

This is an accepted solution.

Hello, BIZNAZZ101 here, a simple way to do this without coding knowledge would be to remove the headings altogether, then in a 'custom liquid' section add something like the following:

<img src="PASTE YOUR IMAGE URL HERE">


Then in the custom CSS settings of the section you can adjust the size using something like this:

img {width: 100%;
  height: auto;}

 
I hope that helps, if you need any other assistance don't hesitate to reach out!

Don't hesitate to reach out for more help with your store. SEE OUR TASK STORE or check us out via our profile! FREE TUTORIALS

View solution in original post

Replies 2 (2)
biznazz101
Shopify Partner
293 23 43

This is an accepted solution.

Hello, BIZNAZZ101 here, a simple way to do this without coding knowledge would be to remove the headings altogether, then in a 'custom liquid' section add something like the following:

<img src="PASTE YOUR IMAGE URL HERE">


Then in the custom CSS settings of the section you can adjust the size using something like this:

img {width: 100%;
  height: auto;}

 
I hope that helps, if you need any other assistance don't hesitate to reach out!

Don't hesitate to reach out for more help with your store. SEE OUR TASK STORE or check us out via our profile! FREE TUTORIALS
AlanIanIngram
Tourist
11 1 1

Your solution is probably the best, thank you