Help, Support and Suggestions
How do I ad a background image?
Brogan
at 10:14PM, Oct. 8, 2008
Alright, I've been playing around with my website, but I'm having a hell of a time adding a background image. Basically I just want to add an image tiled across the background (preferably a fixed one). But it seems like my code isn't working or I'm just doing it wrong. Any ideas? Thanks...
last edited on July 14, 2011 11:35AM
Biz3
at 6:32AM, Oct. 15, 2008
Normally, you code background images to website elements right into the specific field's style, or into a Cascading Style Sheet.
A style sheet element with a background on the body would look like this;
Then there's various extra stuff that can be defined, as well, such as the repeat direction (Repeat-x, repeat-y or repeat-none).
A style sheet element with a background on the body would look like this;
body {
background-image:
url('[URL HERE][b]'[/b]);
}Then there's various extra stuff that can be defined, as well, such as the repeat direction (Repeat-x, repeat-y or repeat-none).
body {
background-image:
url('[URL HERE][b]'[/b]);
background-repeat: repeat-x (or repeat-y or even repeat-none).
}
last edited on July 14, 2011 11:23AM
©2011-2012 WOWIO, Inc. All Rights Reserved


