MyBB Community Forums

Full Version: How to change background on Forums ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can you change background on your forums ?
body {
	background: url("http://www.hdwallpapers.in/walls/star_wars_battlefront_twilight_company-wide.jpg") no-repeat fixed center top #F2F2F2;
	color: #333;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
	overflow-y: scroll;
}
This is what my Global looks like atm ?
What should I do :/
you need to upload the background image on your server then in global css then you must put the image path

that's how I did on my forum.

I hope that you got help

   background-image: url(../../../images/PIC1.PNG);
    background-position: right bottom;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
You can also do this:
background: url(images/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
background: url(images/bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;