Background
-
Hello:
How can I get the background to show up on all pages not just the “home” page?
I used the following code for the background picture
body.home {
background-image: url(‘https://studentdrmissionary.files.wordpress.com/2015/12/img_1365.jpg’) !important;
background-repeat: repeat;
background-position: top center;
background-attachment: fixed;
background-size: cover;
}.site {
The blog I need help with is: (visible only to logged in users)
-
Hi there!
I did not check it myself, but my guess is that removing the home class would fix your issue.
Your code would be like this:
body { background-image: url('https://studentdrmissionary.files.wordpress.com/2015/12/img_1365.jpg') !important; background-repeat: repeat; background-position: top center; background-attachment: fixed; background-size: cover; }I hope this helps!
-
- The topic ‘Background’ is closed to new replies.