MyBB Community Forums

Full Version: How do I change background to an Image tried everything?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2016-02-12, 08:26 PM)boson Wrote: [ -> ]
(2016-02-12, 08:24 PM)SeriousArbiter Wrote: [ -> ]http://prntscr.com/a2gh9a

You forgot to put ' & ' before & after url

still doesnt work http://prntscr.com/a2gkg5

(2016-02-12, 08:26 PM)boson Wrote: [ -> ]
(2016-02-12, 08:24 PM)SeriousArbiter Wrote: [ -> ]http://prntscr.com/a2gh9a

You forgot to put ' & ' before & after url

Try this:

background: url('http://i.imgur.com/65YfilX.jpg') no-repeat center top; 

Still no http://prntscr.com/a2gl45    Sad
PM me temp admin access
If you're trying to change the background of the main forum, first go down to your body tag and change your background as so:
background: url(images/yourimage.png) no-repeat center top;

Then you want to go down to your content tag and remove the background completely.

#content {
	background: #fff; <-- Remove whole line
	width: auto !important;
	padding: 20px 10px;
	overflow: hidden;
}
(2016-02-12, 08:54 PM)Flawless Wrote: [ -> ]If you're trying to change the background of the main forum, first go down to your body tag and change your background as so:
background: url(images/yourimage.png) no-repeat center top;

Then you want to go down to your content tag and remove the background completely.

#content {
	background: #fff; <-- Remove whole line
	width: auto !important;
	padding: 20px 10px;
	overflow: hidden;
}

Ok so I have just reinstalled MyBB and the theme Dark1.8, uploaded dark1.8 images folder to /images/dark1.8 via FileZilla, the title logo halo1.png successfully but the background image halo2.jpeg still isnt working,

http://prntscr.com/a2hcba

http://prntscr.com/a2hci4

EDIT: recorrected it to .jpg still doesnt work

Siteground managed to help me and so far its like this: http://prntscr.com/a2kmpk

Can anyone now tell me how to make it fill the bottom bit aswell?
add this next to image css
background: url(images/yourimage.png) repeat-x;
background-size: 100%;
background will be scalable
Pages: 1 2