background image on static page
- The topic ‘background image on static page’ is closed to new replies.
Need help? Check out our Support site, then
I’m using a static front page while I build my posts. I’d like to use a faded background photo image as background. Is this possible with Nexus? I don’t see background pop in the menu. I don’t have extensive skills with all this. Thanks for any help. Even a no way will get me moving onward.
The blog I need help with is: (visible only to logged in users)
This would only be possible with custom CSS using the Custom Design upgrade. For the page in question, you could define a custom background using the following code:
body.page-id-19 #wrapper { background-image: url(URL); }
body.page-id-19 .main-title {background: none;}
You would need to replace “19” with the id of the page you wanted the image to appear on. You would need to replace URL with the full path to your background image.