MyBB Community Forums

Full Version: Please help background not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change my background color to this [Image: K98v8WY.png]


It is saved as test.png but this wont work

#container {
	color: #333;
	text-align: left;
	line-height: 1.4;
	margin: 0;
	min-width: 990px;
	background-image: url(images/test.png);
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}
Look for this
 body {



And add this immediately after


 background: url(images/test.png);
(2015-10-28, 07:20 PM)fredzy Wrote: [ -> ]Look for
body {

}

background: url(images/test.png);


Add this inside the "{

}"
This is not working i just tried it thanks for the quick response though
body {
	background-image: url(images/test.png);
	color: #2ecc71;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
	overflow-y: scroll;
}
body {
    background: url(images/test.png);
    color: #2ecc71;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
    overflow-y: scroll;
}

Use this instead,  notice I removed "-image" 

If it still doesn't work, press ctrl+f5 to hard refresh
(2015-10-28, 07:29 PM)fredzy Wrote: [ -> ]
body {
    background: url(images/test.png);
    color: #2ecc71;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
    overflow-y: scroll;
}

Use this instead,  notice I removed "-image" 

If it still doesn't work, press ctrl+f5 to hard refresh

I refreshed multiple times and hard refreshed it still didnt work for some odd reason
It's working I can see the background just give it some time, it's caused by browser cache your can clear that to see immediate changes
It works thx