Sorry forgot to say it was the iNove 1.4.6 by mg12 theme
what’s the code so I can place a background image like such exampled site http://www.dresdenfilesrpg.com/
Hi,
You need to first log in to your WordPress dashboard, choose theme Editor. On the right hand side you will see a list of files you can edit. Select style.css.
Scroll down to the part of the code labeled body. In that code block you will see a line that says background. This is the part of the code that tells the template what color and/or background image to display. If you just want to change the background color and do not want an image in the background, you can easily change it.
Take a look at the background line of code again and change kubrickbgcolor.jpg to the name of the background image you want to use.
Thanks,
Shane G.
Modify this in your style.css
/* layout START */
#wrap {
background:url(img/background_image.jpg) center top no-repeat fixed;
padding:20px 0;
}
Hope this help.