You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add an image in the background. Ideally, I would like it to cover the entire webpage, header included.
Does anybody know how to do that?
The text was updated successfully, but these errors were encountered:
I am trying to add an image in the background. Ideally, I would like it to cover the entire webpage, header included. Does anybody know how to do that?
The following method works for me:
Go to /_sass/_reset.scss/
Delete line L10 and add a few other lines:
L10: background-image: url(https://your-url);
L11: background-size: 100%;
L12: background-repeat: no-repeat;
L13: background-attachment: fixed;
L14: background-position: center;
I am trying to add an image in the background. Ideally, I would like it to cover the entire webpage, header included.
Does anybody know how to do that?
The text was updated successfully, but these errors were encountered: