-background=my/image/image.jpg
). The format of the image can be "jpg" or "png".-backgroundColor=#33CCFF
). In that case the background will use only one color-backgroundColor=#FFFFFF;#CCCCCC
). In that case the background will use a vertical gradient defined with the two colorsdiv.middleWithImage
and div.middleForIDXWithImage
CSS rules allow to specify how the background is presented. The default is:div.middleWithImage, div.middleForIDXWithImage { float: left; width: 80%; padding: 0 2%; margin: 0; min-width: 400px; margin-bottom: 10px; background-image: url("Background.png"); background-position: center; background-repeat: no-repeat; background-size: cover; }It is possible to customize the background by overriding these properties in the Custom StyleSheet file. For example:
div.middleWithImage, div.middleForIDXWithImage { background-position: top !important; background-repeat: repeat!important; background-size: contain !important; }
-background=myBackground.png
-background=myBackground.png -backgroundOpacity=50
-background=#33CCFF
We will have the following background:
-backgroundColor=#FFFFFF;#CCCCCC
We will have the following background:docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.