Set responsive image background for Wayfarer Theme
- The topic ‘Set responsive image background for Wayfarer Theme’ is closed to new replies.
Need help? Check out our Support site, then
Is there any way to set an image as a background in the Wayfarer template?
The blog I need help with is: (visible only to logged in users)
There isn’t a Customizer setting to do this, however, with it can be done with some Custom CSS. After uploading the image you’d like to use as the background, copy the image URL. You can then use the CSS code below and replace the URL in the example.
body {
background-image: url( http://placehold.it/300 );
}
I hope that helps.