Tagged: woocommerce
Hello,
Hoping you could help tell us how we can out a banner image above (and below) our WooCommerce Shop page and Single Product Page.
Many thanks,
Robert
Hey rpl_admin!
Try adding this to your custom CSS.
.product::before {
background: url("URL to your image");
content: "";
display: block;
height: 100px;
}
.product::after {
background: url("URL to your image");
content: "";
display: block;
height: 100px;
}
And for the shop page you can do the same thing but target it with this.
.template-shop::before { }
.template-shop::after { }
Best regards,
Elliott