Jump to content

Why is there so much space on bottom of my page?


Ryan222008

Recommended Posts

You've got large heights, 1000px is more than the viewport height for most people, but it's the negative top positions with position: relative that are causing the problem. IE moves the top position up with the negative top size but still leaves a space where it would normally be.

 

Delete all the negative top sizes and the heights over say 300px and then see what it looks like. It won't be sorted but then adjust divs without using negative top positions if possible.

Link to comment
Share on other sites

You have all kinds of coding errors/issues. Make sure your code validates - right now you have 36 errors: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.pueblomotorsportspark.net%2F

 

The

tag is deprecated, and you should not be using

or non-breaking spaces to position things - that's what CSS (margins and padding) is for.

 

It's always a good idea to start your CSS out with:

* {margin: 0; padding: 0;} which sets all browser-specific settings to ZERO, and then you add into your stylesheet whatever you want.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...