Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #460520

    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

    #460753

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.