Is it possible to use a background image on this theme. I really like the basic layout - thanks so much ! However would also love an image background. Have tried the background image module and also customising the style with sweaver but cannot get the background image to show up. I guess the theme is overriding these modules. Any help suggestions???

Comments

devsaran’s picture

Status: Active » Closed (works as designed)

As Business theme is using the color module.. It is difficult (lot of code as to be updated) to set the Background image..

Smorten’s picture

An easyfix might be:

Remove background color in CSS here:

#wrap {
width: 920px;
padding: 0 40px 35px;
background: #CA4D4D;
margin: 0 auto;
text-align: left;

And then add a something like this to the body:

body {
background: #ffffff url('image') no-repeat fixed center;
}

Don´t know how the result would look though…