Having difficulty with placing a background image behind for

Luigi1632

Resident
Joined
Apr 9, 2010
Messages
559
Reaction score
0
FP$
512
Currently I am trying to edit a style that my inactive graphic designer made for me in the past and I have run into an issue.

What I am attempting to do is have the first wrap all solid white and the second wrap parameter with a background image. But when the second wrap is like this:
Code:
#wrap2{
	padding: 0 10px 490px;
	min-width: 650px;
	width: 1100px;
	margin: 0 auto;
	background-image: url("{T_THEME_PATH}/images/InnerBG.png");
	background-size: 1119px 490px;
	background-color:transparent;
	background-repeat:no-repeat;
        background-position:0 300px; 
}

It pushes the forumlist down!
bgprob1_zpsa68e7492.webp

But if the second wrap code is like this:
Code:
#wrap2{
	padding: 0 10px;
	min-width: 650px;
	width: 1100px;
	margin: 0 auto;
	background-image: url("{T_THEME_PATH}/images/InnerBG.png");
	background-size: 1119px 490px;
	background-color:transparent;
	background-repeat:no-repeat;
        background-position:0 300px; 
}
The forumlist hasn't pushed down... but the image ends getting cut off
bgprob2_zps6c098bed.webp

I can post the entirety of colours.css and common.css, but I'm at a loss of how to fix this.
 
Re: Having difficulty with placing a background image behind

Why don't you just add height of the image to the second version?
 
Re: Having difficulty with placing a background image behind

I'll try that, but if that doesn't work... then I am unsure of what may be cutting off the image.
 
Re: Having difficulty with placing a background image behind

Reply back if it doesn't work. I'll fix it nonetheless.
 
Re: Having difficulty with placing a background image behind

I tried adding the "height" parameter and it did the exact thing as the first code I had in the first post (with the large padding number):
bgprob3_zps6d904968.webp

I'm going to PM you a .zip file of the theme, so you can see what you can do from there, unless you have some other suggestions.
 
Back
Top Bottom