Background color not working in IE & footer issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Timeri
    New Member
    • Nov 2007
    • 11

    Background color not working in IE & footer issue

    The body background color is white on the left-side in IE when it should be the same color as the right. You can see what it should look like in firefox. You can see it at...

    http://www.siteiq.net/TEST/index-new.html

    Also I'm still having issues with my content box not expanding with my deck box...essential ly I need my footer to stay below all content no matter the size of the window.

    I've tried everything I can think if to fix these. Any help or suggestions I get will be GREATLY appreciated.
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Not sure why, but when i changed the margin of the wrapper div to 0 and the padding of the body to what the margins were for the wrapper div, it worked.

    Internet Explorer for you..

    [code=css]
    @charset "utf-8";
    /* CSS Document */

    body {
    color: #000000;
    font: small "Arial", Helvetica, sans-serif;
    margin: 0;
    padding: 0px 100px;
    background-color: #ece0d2;
    }

    #wrapper {
    color: #000000;
    /*margin: ;*/
    background-color: #FFFF00;
    }
    [/code]

    Hope this is ok :)

    Comment

    • Timeri
      New Member
      • Nov 2007
      • 11

      #3
      Originally posted by markusn00b
      Not sure why, but when i changed the margin of the wrapper div to 0 and the padding of the body to what the margins were for the wrapper div, it worked.

      Internet Explorer for you..

      [code=css]
      @charset "utf-8";
      /* CSS Document */

      body {
      color: #000000;
      font: small "Arial", Helvetica, sans-serif;
      margin: 0;
      padding: 0px 100px;
      background-color: #ece0d2;
      }

      #wrapper {
      color: #000000;
      /*margin: ;*/
      background-color: #FFFF00;
      }
      [/code]

      Hope this is ok :)

      That worked! Thank you! Now if I could just get my footer issue fixed, I'd be a happy girl!

      Comment

      • drhowarddrfine
        Recognized Expert Expert
        • Sep 2006
        • 7434

        #4
        Here's to hoping that you are a girl.

        Comment

        • Timeri
          New Member
          • Nov 2007
          • 11

          #5
          Originally posted by drhowarddrfine
          Here's to hoping that you are a girl.

          Ha ha ha...thankfully , I am :)

          Comment

          Working...