Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
1st thing sory for title .. i dont know how to explain… but how to make website like this ?
http://www.littleblossom.com.my/
Hi sleyer
In Vantage you’d need to use a combination of background image fields:
1. Header: Appearance > Customize > Page: Masthead Background Image.
2. Body: Appearance > Customize > Page: Page Background Image.
3. Footer: Appearance > Customize > Footer: Footer Background Image.
Hope that helps.
already try. but image not center at all, how to make layout fix size using background size ?
You’d need to add those CSS properties via Appearance > Custom CSS. Which background field are you using?
Here are the possible options, you’d need to choose one:
/* Masthead */ header#masthead { } /* Page */ #main { } /* Footer */ #colophon { } /* Boxed Layout Body Background */ body { }Then add the property you need, for example, if you’re using the Boxed layout and are adding an overall background image, you’d enter the following under Appearance > Custom CSS:
/* Boxed Layout Body Background */ body { background-repeat: no-repeat; background-attachment: fixed; background-position: center; }Ref: http://www.w3schools.com/cssref/pr_background-position.asp.