Add background image BEHIND slider on static front page
-
I am able to change the background color using the Custom CSS:
body { background: red; }
but no matter how many different ways I tried to add a background image, it will not work; with or without the slider enabled.
I created an “images” folder under customizr for this code:
body { background: url(./images/zMyBanner.png); }
or
body { background: url('/wp-content/uploads/zMyBanner.png') repeat fixed 0 0 #FAFAFA !important ; color: #5A5A5A; padding-bottom: 0; }
I am using Instant WordPress 4.3 (if that matters) so there is no live site yet, WordPress 3.6 and Customizr 3.08 (when I updated to 3.09 it wouldn’t load correctly; I will work on that later). I tried creating a child theme:
customizr-child/style.css
/* Theme Name: Customizr Child Theme URI: https://example.com/ Description: Child theme for the Customizr theme Author: Chris Author URI: https://example.com/ Template: customizr Version: 0.1.0 */ @import url("../customizr/style.css");
And it will not even show; it only says ‘Template is missing.’ under Broken Themes at the bottom of my themes area. I even tried with twentyten, etc. and have the exact same problem (yes, I updated the style.css to point to the correct directory).
How can I use the Custom CSS to insert a background image behind the Slider? Or which file can I modify to get this to work? Thank you!
- The topic ‘Add background image BEHIND slider on static front page’ is closed to new replies.