Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
5.7k views
in Q2A Core by

1 Answer

+3 votes
by
selected by
 
Best answer

Assuming V1.5.4, using "Snow" theme.

Say you have a background image named 'background.png'

Put that image in Q2A_root_folder/qa-theme/Snow/images/

Open in some text editor the "qa-styles.css" file located in Q2A_root_folder/qa-theme/Snow/

line 78, find

body {
    background:#efefef;
    text-align:center;
    margin:0;
    padding:0;
}

replace "background:#efefef;" with "background: url("images/background.png") repeat scroll top left ;"

I am assuming here that this image is repeatable in both direction.

For more about the proporties that you can apply to this background (image):

http://www.cssbasics.com/chapter_12_css_backgrounds.html

by
Thanks...!!!! it worked Great.. :)
by
Nice! If you find the answer is good, please consider voting it as best reply :)
...