MyBB Community Forums

Full Version: Change background color on FLATTY Theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Has anyone changed the background color in the FLATTY theme?  I've tried all the usual method but nothing works!  There must be something a little unusual with this one!

Never mind, I found a support thread and posted there:

https://community.mybb.com/thread-208140...pid1263257
You have to change the background color of "body", "#content".

For other footer colors, change "#footer .uppermid" and "#footer .lower"
(2017-02-09, 08:53 PM)SvePu Wrote: [ -> ]You have to change the background color of "body", "#content".

For other footer colors, change "#footer .uppermid" and "#footer .lower"

Ok, I got the bg image working, but it is only repeating 1 row across the top and nothing down the page? 

https://www.pa2a.org/index.php

What the heck am I doing wrong, LOL!
Try:
#content {
	width: auto !important;
	padding: 40px 10px;
	overflow: hidden;
	background: rgb(236, 238, 240) url(images/flatty/camo_bg.png) repeat;
}
Replace:
background: rgb(236, 238, 240) url(../../../images/flatty/camo_bg.png) repeat-x repeat-y ;

With:
background: rgb(236, 238, 240) url(../../../images/flatty/camo_bg.png);
background-repeat: repeat;

I also believe the rgba is wrong? Should be like this:
rgba(236, 238, 240, 1)
(2017-02-13, 09:05 PM)SvePu Wrote: [ -> ]Try:
#content {
	width: auto !important;
	padding: 40px 10px;
	overflow: hidden;
	background: rgb(236, 238, 240) url(images/flatty/camo_bg.png) repeat;
}

This worked! I was using repeat-x instead of just repeat!