Okay
  Public Ticket #168229
Add background image
Closed

Comments

  •  1
    Mark started the conversation
    I want to add a background image to my theme and not sure the best way. Edit Style.css? Or, is there an interface to add/change it? thanks, Mark
  •  1,069
    ThemeNectar replied

    Hey Mark,

    If you're using the boxed layout you can add it through the options panel - if you're not, the best way would be to set the image using css on the .container-wrap div :)

    Cheers

  •  1
    Mark replied

    Thanks. I am a bit of a newbie...can you provide a little more instruction on how to accomplish this with CSS?

    thanks,

    Mark

  •  1,069
    ThemeNectar replied

    Sure!

    Add this into the Custom CSS box located in your Salient Options panel:

     
    .container-wrap {
      background-image: url('your-img-src.jpg')!important;
    }
    
    Cheers :)