Footer not where i want it?

This is a discussion on "Footer not where i want it?" within the Web Page Design section. This forum, and the thread "Footer not where i want it? are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Oct 26th, 2006, 23:13
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Footer not where i want it?

I'm coding a gaming template and when i added the shiney grey bar and positioned using float the footer moved up too.

http://www.gtainformer.com/xboxgaming/
http://www.gtainformer.com/xboxgaming/stylesheet.css

How can i fix this??

Also the validator is saying somethings missing, does anyone know what?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Oct 27th, 2006, 14:49
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

I just carried on and it moved back where i wanted it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Oct 27th, 2006, 16:07
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Well I've just followed your link and looked at the site in Firefox and IE and at the moment it's a disaster.

You have two css errors on lines 4 & 79.

You also do not have a charset specified so browsers are guessing at what you want them translated as.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Oct 27th, 2006, 16:59
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

It's a mess because it's not finished, I can't get the login image higher, any way i can?

Also i don't know what to add to stop them from guessing...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Oct 27th, 2006, 19:44
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

You need a meta tag so that the browser know what charset they are supposed to be using as follows:
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
Your other problem is one of code sequence.

Move your 'logintop' div to before your 'banner' div.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Oct 27th, 2006, 19:57
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Thanks alot! both are working now!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Oct 27th, 2006, 20:17
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Sorry for double post.

I have the same problem again, this time with the lower part, moving the div this time didn't work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Oct 27th, 2006, 21:49
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

You need to start thinking things through a little bit.

What have you just done to solve the same problem?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Oct 27th, 2006, 22:41
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Quote:
I have the same problem again, this time with the lower part, moving the div this time didn't work.
...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Oct 28th, 2006, 14:34
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

You need to move the div and 'clear' it from the floated one above it other wise it will butt up against its left-hand side instead of floating into position under it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Oct 28th, 2006, 16:14
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

I nearly have it perfect in IE & FF.

IE problems:
The background of the navigation has added about 6 pixels for some reason, I removed padding but it didn't do anything.

Then the green bar which i just had problems with is short a few pixels while FF is fine.

The footer i think will fix it's self later, like last time.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old Oct 28th, 2006, 20:22
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

You are suffering the cumalative effects of width and padding.

For starters get rid of the padding-left: 16px; in the u.nav li style definition and go from there.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13  
Old Oct 28th, 2006, 21:03
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Hmm, that fixed it, but is that the same way i fix the green bar?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old Oct 28th, 2006, 22:11
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Experiment and see. That way you learn more. You know by know some of the things you should be aware of.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #15  
Old Oct 28th, 2006, 23:22
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Yeah, I played alot with float and absolute, can't get it exact so i tried this and it's the closest i got, maybe ie needs to know there is no padding.. worth a go

EDIT
Everytime i take a break from an error and come back, I fix it easyily.

Thanks for not just telling me, makes me learn even though it's stressful

Last edited by PicoDeath; Oct 28th, 2006 at 23:56.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #16  
Old Oct 29th, 2006, 15:12
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Footer not where i want it?

Funny that about bugs. I looked for one once in 'real programming code' for the best part of 2 to 3 days. Then I switched on the computer one morning and it was staring me in the face.

Glad you appreciate why I was making you work at it rather than just dumping a solution in your lap.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
css

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Best way to set up a footer? Grubious Web Page Design 3 Jun 14th, 2008 12:22
css for this footer r0ck80y Web Page Design 1 May 17th, 2008 13:54
What information should your footer contain? TwentyFourSeven Starting Out 12 Apr 14th, 2007 00:24


All times are GMT. The time now is 10:10.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved