On 08/02/2020 01.46, athurh wrote: > Browsers can have a different default background color defined. > Setting the background image overwrites other background definitions. > --- > assets/css/style-desktop.css | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/assets/css/style-desktop.css b/assets/css/style-desktop.css > index 44ea0c7..b6c5aa1 100644 > --- a/assets/css/style-desktop.css > +++ b/assets/css/style-desktop.css > @@ -33,12 +33,14 @@ > { > /* 90% transparent */ > background: url(../images/qemu_head_200.png) no-repeat fixed > 2em 80px; > + background-color: #FFF; > } > > body.homepage > { > /* 90% transparent */ > background: url(../images/qemu_head_400_faint.png) no-repeat > fixed center 60%; > + background-color: #FFF; > } > > body,input,textarea,select >
Thanks, applied. Thomas