MyBB Community Forums

Full Version: How to change background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey,

i got a problem with a new theme its called Igame theme and i added it to my forum but the background is all white and i want to change it to a picture that i got.
you can see my test site so you can see what i mean : http://crackingsquad.comlu.com

thanks in advance
Go to ACP->Themes->The theme you want to edit->global.css->Advanced Mode and add the following code to your body class.
background: url(images/technologx/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

Replace the image URL to the image directory and location of your choice.
I got same problem with you but I fix it by myself
All I do was blow the code
//body
background: #000 url(images/theme/bg.png) no-:
(2015-12-07, 02:53 AM)Technologx Wrote: [ -> ]Go to ACP->Themes->The theme you want to edit->global.css->Advanced Mode and add the following code to your body class.
background: url(images/technologx/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

Replace the image URL to the image directory and location of your choice.
i changed the url to http://wallpaperspal.com/wp-content/uplo...lpaper.jpg but when i save it it still doesnt show the pic

(2015-12-07, 10:14 AM)mythi Wrote: [ -> ]
(2015-12-07, 02:53 AM)Technologx Wrote: [ -> ]Go to ACP->Themes->The theme you want to edit->global.css->Advanced Mode and add the following code to your body class.
background: url(images/technologx/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

Replace the image URL to the image directory and location of your choice.
i changed the url to http://wallpaperspal.com/wp-content/uplo...lpaper.jpg but when i save it it still doesnt show the pic
Thanks i already solved it i need to put the pic in the folder on my host with file manager :)
(2015-12-07, 10:14 AM)mythi Wrote: [ -> ]
(2015-12-07, 02:53 AM)Technologx Wrote: [ -> ]Go to ACP->Themes->The theme you want to edit->global.css->Advanced Mode and add the following code to your body class.
background: url(images/technologx/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

Replace the image URL to the image directory and location of your choice.
i changed the url to http://wallpaperspal.com/wp-content/uplo...lpaper.jpg but when i save it it still doesnt show the pic

(2015-12-07, 10:14 AM)mythi Wrote: [ -> ]
(2015-12-07, 02:53 AM)Technologx Wrote: [ -> ]Go to ACP->Themes->The theme you want to edit->global.css->Advanced Mode and add the following code to your body class.
background: url(images/technologx/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

Replace the image URL to the image directory and location of your choice.
i changed the url to http://wallpaperspal.com/wp-content/uplo...lpaper.jpg but when i save it it still doesnt show the pic
Thanks i already solved it i need to put the pic in the folder on my host with file manager Smile

Well I'm I helped you get it fixed.