1. Styles on page

    Article: AN0001975Updated: 10.09.2018

    Setting a page background picture

    It is possible to set a background picture of the ObjectGears page. Just place webpart Skript on the page and define in its settings below script. Just change the url to the image according to your needs.

    div.page
    {
      background-image: url(./imagesdata/image_name.jpg);
      background-repeat:no-repeat;
      background-position:center;
      -webkit-background-size:cover;
      -moz-background-size:cover;
      -o-background-size:cover;
      background-size:cover;
    }

×