Would love some help figuring this out.....

by 3 replies
4
If I view this site on IE8, at the bottom of the footer you'll see a small sliver of white background showing, BUT in Firefox, Google Chrome, Safari and Opera, its not there.... what can I do to fix this?.....

Also while viewing this page on Google Chrome only there seems to be a split in the graphics in two places, the top header to the right and the footer area?

Any ideas on what is causing this and can be done to fix it...?

I have validated the css and the html with W3C and have only 3 minor errors in the xhtml that wouldn't cause this for sure... the css code validates perfect

Any suggestions would be greatly appreciated....

All the best,
Steve
#programming #figuring #love
  • My first and best guess is that you haven't zeroed the margin and padding on div tags. IE likes to put an implicit margin around block-level objects (<p> also).
    • [1] reply
    • Thanks for your help, dont know how to do that, so I just trashed the project, I was trying to get a reapeting background on the x axis with the footer, like I had with the header.

      But I just decided to much of a pain in the arse for now, so I just went with no footer reapeating image until I can figure a simple way to do it.....

      IE can suck and google chrome also...
  • you do it like this:

    <STYLE type="text/css">
    /* null margins and padding to give good cross-browser baseline */
    html,body,address,blockquote,div,form,fieldset,cap tion,h1,h2,h3,h4,h5,h6,hr,ul,
    li,ol,ul,table,tr,td,th,p,img
    {
    margin:0;
    padding:0;
    }
    img,fieldset {
    border:none;
    }

    ...rest of css

Next Topics on Trending Feed

  • 4

    If I view this site Here Goes The Title of Your Page on IE8, at the bottom of the footer you'll see a small sliver of white background showing, BUT in Firefox, Google Chrome, Safari and Opera, its not there.... what can I do to fix this?..... Also while viewing this page on Google Chrome only there seems to be a split in the graphics in two places, the top header to the right and the footer area?