tags:

views:

100

answers:

5

For some reason the site has extra bits of space on the bottom of the page, even there is no padding or margin setup ..

The site in question is www.racedayworld.com and seems to happen in (at least) ffox 3+ and IE8

note: we are going through a DNS change so if you can't get to that URL try here:

http://racedayworld-com.si-eioswww3.com/

A: 

Perhaps you have a border that is set too wide.

try border-width: 1px;

if not then

html, body
{
    border-width: 1px;
    margin: 0;
    padding: 0;
}
Jonathan Czitkovics
Sorry, the domain is in the middle of a DNS change - you can view it from here:http://racedayworld-com.si-eioswww3.com/
Kevin
A: 

Try adding the following CSS:

html, body {
    margin: 0;
    padding: 0;
}
SLaks
A: 

try:

html, body {
     padding: 0;
     margin: 0;
}
Jud Stephenson
A: 

Hmmm... Strange!

Not an answer but a hint: I get a provider specific DNS error page when trying to open "www.racedayworld.com" however "racedayworld.com" works. Could this maybe be a reason for your problem?

efi
+1  A: 

The problem is caused by the #ui-datepicker-div element and can be fixed by giving the element 'top' or 'bottom' CSS property with any value (or display: hide).

#ui-datepicker-div {
    bottom: 0;
}

(The above fix was tested only in Firefox. I guess it fix other browsers too. Safari won't need a fix at all.)

jholster
so I'll need to add that ID to the css then...
Kevin
You can use that id or any of the classes of that particular div. Check the element tree with Firebug or similar tool and you will see it at bottom. It cannot be found in original (static) source, being dynamically added in javascript.
jholster
Hey Yaggo,The problem with that is I think that's only a reference ID, so when I add that propery some of the others go missing, like the background of the event control goes blank (transparent) and adding background: #fff; doesn't seem to work..
Kevin