Home>Support>no background image

no background image

By chancans, 9 years ago. Last reply by Andrew Misplon, 9 years ago.

“To upload a background image for your website, navigate to Appearance > Customize > Background. ”

There is no “Background” option under Customize. Is it somewhere else?

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Hi chancans

    If you’re using the Full Width layout version of Vantage this option isn’t available in the Customizer. If you switch to the Boxed layout version you’ll find it is. When using the Full Width layout you can set background images for the Masthead, Page and Footer. Each option is available under that section.

    Hope that helps.

  2. 9 years, 11 months ago chancans

    Hi Andrew:

    “you can set background images for the Masthead, Page and Footer.” Where are these options located?

    Also, would you be kind enough to please look at this website:

    http://invisiblewarmovie.com/

    and let me know if in your estimation it would be possible to duplicate its layout using Vantage (or another of your themes)? If so, and if I were to pay for an upgrade to Premium, would you be able to give me advice on how to go about doing it? The wp themes I’ve tried so far do not go full-width like that site. Thanks.

    Best,

    Michael

  3. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    You can find those options at Appearance > Customize. Our documentation goes over the Customizer here: https://siteorigin.com/vantage-documentation/customizations/

    Masthead and Page background image can be found at Appearance > Customize > Page and the Footer background can be found at: Appearance > Customize > Footer.

    The full set of Customizer options are unfortunately only available in Vantage Premium.

    Vantage has a Logo in Menu layout option, you can set this from Appearance > Theme Settings > Layout. This is what it looks like: http://hitdelete.com/. Using that layout and setting dark colors in the premium Customizer you’d get a pretty similar layout to the link you posted.

  4. 9 years, 11 months ago chancans

    Thanks, Andrew, I upgraded to premium.

    Is there a way to move the slider box down? Custom CSS?

    Is there a way to make the bg image not repeat?

  5. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Thanks for your support.

    You could add the following to Appearance > Custom CSS to move the slider down:

    #main-slider {
    padding-top: 20px;
    background: #fff;
    }
    

    Adjust the slider background color and padding as required.

    Insert the following under Appearance > Custom CSS to control your background image:

    /* Background Image */
    
    body.custom-background {
    background-repeat: no-repeat;
    background-position: center center !important;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }
    

    That’s no repeat and cover. If you don’t want the cover effect you can remove all the properties after the no-repeat line, just leave the closing curly bracket.

  6. 9 years, 11 months ago chancans

    Thanks, Andrew. The area cleared out by the padding is white. I had wanted the bg image to start here. But the bg image is way down on the page (below slider). Any way to make the white become bg? Thanks. (I tried to post you a screenshot of page but cant figure out how)

    M

  7. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    If you’re using the full width layout then the page backgrounds can be applied to the masthead, page and footer. The page background doesn’t apply to the slider background as this is usually 100% width.

    If you send through a link I’ll take a look and try assist.

  8. 9 years, 11 months ago chancans

    Thanks. Yes, all that white area was part of the slider. I’m working offline localhost so I can’t send a link, but can I send you a screengrab to dropbox or somewhere else?

    What I have now running full width across screen:
    Masthead
    Nav Bar
    Slider
    BG Image

    What I’d like is:
    Masthead
    Nav Bar
    BG image (about 600 pixels worth)
    slider
    BG image continues

    So the slider looks like it’s laid on top of the bg image.

    Adding padding to the slider doesn’t allow the bg image to show up just under the nav bar, it just slides everything down. If I were to add margin bottom to the nav bar, would the bg image show up? Or is there no way to move the slider down and have bg image just below nav bar?

    (the live site is hosted on 1and1 (http://www.barneyfrankfilm.com/). If I can’t send you a screengrab, is there a way to upload the theme and files to an offline 1and1 folder for you to look at there?)

  9. 9 years, 11 months ago chancans

    trying to approximate that layout on the invisiblewarmovie site, where they had the title, then the woman’s eyes, then the trailer, then the reviews.

  10. 9 years, 11 months ago chancans

    Right now I have the trailer in the slider vis vimeo

  11. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    We do our best to assist with small customisations but unfortunately don’t officially offer customisation services. It’s often best to work the site design into the template’s capabilities and your own development limitations. Just a heads up in this regard. https://codeable.io/ would be our recommendation for developers to consult.

    The page body (#main) starts after the slider div, so it’s not possible to have it’s background appear before the slider. What you can do is apply a background image to #main, insert a blank Page Builder row, then insert a Meta Slider widget in the row after that. It won’t be a 100% slider but it’s something the theme can do. To apply a background image to the #main container you’d go to Appearance > Customize > Page: Page Background Image. This method would be the most reliable way to achieve this effect given the theme’s capabilities.

    Alternatively you can add bottom margin to the menu or top margin to the slider, but then you need to apply your background image to the following selector:

    body.responsive.layout-full #page-wrapper { }
    

    However that selector is only visible in this gap. Below the slider the #main container appears above the page-wrapper container.

    Hopefully this sheds a little light on the structural setup of this page and it’s limitations in this regard.

  12. 9 years, 11 months ago chancans

    Thanks, Andrew, I’ll check out codeable.

    Just two more requests: I added top margin to slider, but how do I code the selector? This didn’t work (putting the url of the image between brackets):

     body.responsive.layout-full #page-wrapper {http://localhost:54211/wp-content/uploads/2014/10/2107-Barney-Frank-Study-7beigetoplaurelsonly-copy6.jpg}

    Also, in case margin bottom for the nav bar is different than adding margin top to the slider, what is the coding for that? This didn’t work:

     .main-navigation {
      margin: margin-bottom: 200px;
     }
  13. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    For sure.

    You need to declare which property that url is the value of. So it’ll need to look as follows:

     body.responsive.layout-full #page-wrapper {
    background: url('http://localhost:54211/wp-content/uploads/2014/10/2107-Barney-Frank-Study-7beigetoplaurelsonly-copy6.jpg');
    }
    

    Ref: http://www.w3schools.com/css/css_background.asp

    For the menu it would be:

     .main-navigation {
    margin-bottom: 200px;
    }
    

    Ref: http://www.w3schools.com/css/css_margin.asp

    Hope that helps.

  14. 9 years, 11 months ago chancans

    That did the trick! Thanks, Andrew.
    Any idea why the bg would still repeat (duplicates to the right) even with your code?

  15. 9 years, 11 months ago chancans

    got it–had to resize the image. thanks again.
    M

  16. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    You could add a no-repeat property to the selector. For example:

     body.responsive.layout-full #page-wrapper {
    background: url('http://localhost:54211/wp-content/uploads/2014/10/2107-Barney-Frank-Study-7beigetoplaurelsonly-copy6.jpg');
    background-repeat: no-repeat;
    }
    

    Ref: http://www.w3schools.com/cssref/pr_background-repeat.asp

    Glad to hear you made progress.

  17. 9 years, 11 months ago chancans

    Hi Andrew: Back again. Everything is looking very good. Thank you.

    I have a 2nd metaslider added to the page and it shows up fine (a static image). I added a link to donations above it on page, but it’s just underlined text. I tried to change it to a button by using pagebuilder/add button, but that makes the page only the button and wipes out everything else in the editor. Is there a way to a both the metaslider and a button to a page simultaneously?

  18. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Does your Button (PB) widget appear as a underlined text when you insert it on its own?

  19. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    How did you insert the second Meta Slider?

  20. 9 years, 11 months ago chancans

    The page organization after header and nav bar is:
    photo in page wrapper
    1st slider: vimeo trailer
    2nd slider , static image (film fest laurels and quotes)
    3rd slider, slide show

    On the editor on home page I see the 2nd two sliders, created by pasting in their short codes [metaslider id=1076] [metaslider id=1091]. For some reason I don’t see the vimeo slider, but it’s on the site.

    I put an underlined link in the page above the 2nd slider and it puts a blue underlined DONATIONS on the page, but it looks wanky so I tried to put a button in instead. The only way I saw to put the button in was to use page builder, but that wipes out everything I did in the editor, they seem mutually exclusive.

    I just wanted to change that underlined Donations into a button. Does the button have a short code I could insert like the sliders? Thanks.

  21. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    This is pretty tough for me to visualise. Ideally I’d need to take a look once you have a public url.

    All of our plugins offer widgets, nothing works off shortcodes. There is a Button widget built into Page Builder and a newer Button widget our Widget Bundle plugin: http://wordpress.org/plugins/so-widgets-bundle/. They both need to be added via Page Builder as a widget or into a widget area.

  22. 9 years, 11 months ago chancans

    Thanks. Are the editor and page builder modes mutually exclusive, i.e., what you do with one wipes out the other? Right now, if I add the button with page builder, all the other editor settings go away. In this case that’s the two sliders with short codes which disappear.

    Alternatively, I could try to add the button widget from the widget page, but on the right I only see places to put the widgets in header, footer, and sidebar, not on page.

  23. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    They are. It’s not possible to edit Page Builder content via the Visual or Text editor tabs. You’ll need to add your slider via Page Builder. It’s a case of choosing, do you want to edit a page in Visual/Text OR Page Builder, you need to choose.

  24. 9 years, 11 months ago chancans

    Thanks, Andrew, I’ll try to do that.

  25. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    For sure.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More