Change color of header to a picture in venture

Looking to change the color of my header from just a solid color to a picture in venture

Hi @icon-archery Welcome to the Shopify Community,

Can you please share the store url here.

Thanks

https://iconarchery.com/

Hi @icon-archery

Please add below code into your theme file called “theme.scss.css”

  • Online Theme

  • Code Edit

  • Find the file “theme.scss.css” inside asset directory

  • Place the code at very bottom and hit save

header.site-header {
background-image: url(abc.png);
background-size: cover;
background-repeat: no-repeat;
}

Dont forget to add picture url in the code i just added dumy image name.

Thanks