How To I Change This Part Of My Forum Theme?

SeanFace101

Seasoned Veteran
Joined
Jul 14, 2011
Messages
3,067
Reaction score
21
FP$
4,642
My Forum: http://www.xboxlivefan.org/

I am trying to get my footer background image to site the same way as my header image. If you have a look at my website (link above) and notice that the header image is all the way to the edge & top of the forum body, but if you scroll down to the footer, you will notice that the image doesnt go all the way to the sides & bottom. I have tried changing several things in the CSS such as padding, margins, etc.. but cant seem to get it.

Can some help me out please?
Thanks, Sean!
 
Try this for your wrapfooter class:

Code:
text-align: center;
color: #666;
padding: 10px 0px 1px 0px;
background: #458D3E url(images/footerbg.png) top left repeat-x;
width: 962px;
}

I just added in the width attribute, if not, try adding

Code:
margin: 0 auto;

Instead of the width attribute.
 
This is the CSS code for the footer...
Code:
#wrapfooter {
	text-align: center;
	color: #666;
	padding: 10px 0px 1px 0px;
	background: #458D3E url(images/footerbg.png) top left repeat-x;
}
Tried both those you suggested.
The width one, just make the forum body go wider so that the gap stays there & the margin one doesnt do nothing to it 😛

Any other ideas?
I have tried lots of things & can get it right.
😛
 
LiquidServe said:
I could help you fix it.... PM me ur skype and i'll tell you how to fix it. 🙂
Dont have skype 😛
Could you not explain it on here?
 
Can I just ask who has coded your site? Your entire site is coded with tables, which is 1. causing your problems 2. Highly outdated. What you need to do is make the footer area its own <td> outside of the table area which has a class of content. It is the padding on this which is causing the image to indent on both sides.
 
Tindris said:
Can I just ask who has coded your site? Your entire site is coded with tables, which is 1. causing your problems 2. Highly outdated. What you need to do is make the footer area its own <td> outside of the table area which has a class of content. It is the padding on this which is causing the image to indent on both sides.
The forum is just the php software and i have used tables for part in like the affiliate page & that.
Ok, ill try that, thanks 😛
 
Tindris said:
Can I just ask who has coded your site? Your entire site is coded with tables, which is 1. causing your problems 2. Highly outdated. What you need to do is make the footer area its own <td> outside of the table area which has a class of content. It is the padding on this which is causing the image to indent on both sides.
I hate to use table's , instead I use divs in HTML4 and now custom divs 😉

PS: Sean it's tough to explain out here, u got any other IM?
 
LiquidServe said:
Tindris said:
Can I just ask who has coded your site? Your entire site is coded with tables, which is 1. causing your problems 2. Highly outdated. What you need to do is make the footer area its own <td> outside of the table area which has a class of content. It is the padding on this which is causing the image to indent on both sides.
I hate to use table's , instead I use divs in HTML4 and now custom divs 😉

PS: Sean it's tough to explain out here, u got any other IM?
So is php software made with tables then?
I have facebook 😛
 
If i was to change the them, then would most of my mods to work correctly with the new theme?
 
Back
Top Bottom