Some help please

Discussion in 'HTML & Website Design' started by web-master, May 31, 2008.

  1. #1
    I have made my front page for my website but the white background disappears and I would like to know why and how it can be fixed.

    its at seoservices360.com/test

    you can look at the css file and source code if you like.

    Cheers
    Web-Master
     
    web-master, May 31, 2008 IP
  2. crath

    crath Well-Known Member

    Messages:
    661
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    100
    #2
    1) You have "background-color: white;" declared twice, which may be canceling out each other.

    2) Use "background: #fff;" instead of "background-color: white;" and only once.
     
    crath, May 31, 2008 IP
  3. Luci

    Luci Peon

    Messages:
    59
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    add clear: both; to your #footer id. if that doesn't work put it on #footer_img too
     
    Luci, May 31, 2008 IP
  4. whirlybird20

    whirlybird20 Guest

    Messages:
    462
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I assume that you are talking about the background of the two content DIVs

    If so then just add this

    background-color: #FFFFFF
    Code (markup):
    after here:
    
    #content .left {
    	width: 470px;
    	float: left;
    Code (markup):
    and also after here

    #content .right {
    	width: 240px;
    	float: right;
    
    Code (markup):
    in your css file. That should solve it.
     
    whirlybird20, May 31, 2008 IP