MyBB Community Forums

Full Version: adding background image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys and gals,
I was wondering how to put an image in the background of my forum which does not move (static) when you scroll up and down the forum. also how much would a 1080p photo impact performance?
Thanks

P.s. Any suggestions on where to get forum markers? I googled it but didnt find any that i liked.
open your theme's global.css and find .body and add:

background-image: url(images/background.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
(2014-03-03, 04:05 PM)gbk Wrote: [ -> ]open your theme's global.css and find .body and add:

background-image: url(images/background.jpg);
background-repeat: no-repeat;
background-attachment: fixed;

thanks but the background-image: url(images/background.jpg); where do i put the image in my directory? I tried putting it in the images folder but it didnt work.
Thanks
put your image anywhere you want and then find url of image. and change with "images/background.jpg".

background-image: url(http://yoururl.com/images/background.jpg);