MyBB Community Forums

Full Version: Change my Apart1 background to an image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. I was wondering how I would change my Apart1 Background to an image. Right now it is white. And when I change my thread.png image. It never changes. It stays the same as the old image.
Use image URL in .body css attribute in global.css
Ehh. Im not really good at css. Could you give me the code?
Thanks Big Grin
Hi? Could you help me please?
Go to: ACP > Themes > APart Theme > Edit > Edit in Advanced Mode > Search;
#container {
	width: 95%;
	background: #fff;
	border: 1px solid #e4e4e4;
	color: #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left; /* IE 5 fix */
}

or some thing like that, and add Image URL in background attribute like this;
#container {
	width: 95%;
	background: #fff url(images/logo.gif);
	border: 1px solid #e4e4e4;
	color: #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left; /* IE 5 fix */
}

Where images/logo.gif is the Path of your Image used as a Background image. Wink
Thanks and I just found it in another post. LOL Thanks so much Smile
EDIT: When I do that, it stays the same; white. Any ideas?