Closed (works as designed)
Project:
Business
Version:
7.x-1.6
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
16 Apr 2012 at 14:46 UTC
Updated:
12 Nov 2012 at 11:08 UTC
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
Comment #1
devsaran commentedAs Business theme is using the color module.. It is difficult (lot of code as to be updated) to set the Background image..
Comment #2
Smorten commentedAn 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…