Skip to main content
Participant
August 13, 2013
Question

Scene7 eCatalog HTML5 Viewer - how to remove bg image

  • August 13, 2013
  • 1 reply
  • 1077 views

Trying to figure out how to remove the background image page divider on this viewer.

Default style:

.s7pageview .s7pagedivider {

    background-image: url("/s7sdk/2.4/images/sdk/divider.png");

I tried adding a style sheet with:

.s7pageview .s7pagedivider {

    background-image:none;

but it broke all the other styles such as the viewer tools.

Thanks.

    This topic has been closed for replies.

    1 reply

    Participant
    June 25, 2015

    Can you try the below code:

    .s7ecatalogviewer .s7pageview .s7pagedivider {

    width:0px;

    background-image:url(images/sdk/divider.png);

    }