1. Styles on page

    Artikel: AN0001975Aktualisiert: 10.09.2018
    Die vorgegebene Sprachenversion vom Artikeltext wird angezeigt, weil es kein Text von der ausgewählten Sprache und Version gibt.

    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;
    }

×