Need some BG Help

xIsabel38

Well-known member
This is probably an easy question for you guys, but I can't find the answer :(

I bought a template and am now trying to customize that template but I'm having some issues with it. I'm trying to set up the background graphic of my forum to auto size to the users browser settings and I'm trying to have it expand out to more than just the header of the forum.

Currently, the size of the banner is a fixed size that displays differently depending on user resolution. And it gets cut off at about 130px because that is the size of the header.

If anyone can take a look at it here and help me I'd be forever grateful.
 
In extra.css add this
Code:
.branding
{
  background-position: 50% 50%;
  background-size: 100% 130px;
}
If that looks too ugly for you, change background-size line to
Code:
background-size: 100% auto;
 
Top Bottom