Comments on $7 | Autumnal CSS All Comments

Hi !

I would like to add a background instead of just having a solid color in the background but I do not know how to do it.

mny0.png

I tried to do it myself but it covers the header and the background repeats itself where I would have liked it not to be the case...

ccnb.png

aw97.png

can you help me please ?

thank you and have a good day !

Hi!

I come back here to answer my own question.

( thanks to Codigo for helping me on the forum)

To add a background image, instead of the beige-white background.

you must replace the contents of the named section
/* --- Content Background --- */

6tsg.png

by :

c6eu.png

I’m writing it here for you if you want to copy and paste:

.row-offcanvas {


background-image: url('url here');

background-attachment: fixed; /* --- I use a gradient background, it allows to display it without the patterns being huge (I use images of 4000px) --- */
background-size: cover; 
background-position: center;
}



Have a good day !