Results 1 to 8 of 8

Thread: Background wont display

  1. #1
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Background wont display

    I am just starting a site that needs a backgound image.
    Currently I cant get it to display.
    test site link http://217.46.159.226/shc/
    The mark up is


    <?php



    require ('shc_fns.php');
    do_html_header();

    ?>
    <link href="./includes/layout.css" media="screen"
    rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="maincontainer">
    <div id="contentwrapper">
    <p class="p">mmmmmmmmmmmmmmmmmmmmmmmmmmmmmm</p>
    <div class="innertube"><p>Spam spam spam spam spam spam
    spam spam spam spam spam spam
    spam spam spam spam spam spam
    spam spam spam spam spam spam.</p>
    <p>Spam spam spam spam spam spam
    spam spam spam spam spam spam
    spam spam spam spam spam spam
    spam spam spam spam spam spam.</p>
    </div>
    </div>
    </div>

    </body>
    </html>
    The css so far is
    body{
    margin: 0;
    padding: 0;
    line-height: 1em;
    background: #6EC6F1;
    text-align: center;
    }
    #maincontainer{
    width: 900px;
    margin: 0 auto;
    padding-top: 5px;
    }
    #contentwrapper{
    float: left;
    width: 100%;
    background-image: url('/images/backgroundx900.jpg');
    background-repeat: no-repeat;
    width: 900px;
    height: 500px;
    }
    .p{
    color:red;
    }

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    Try background: url('/images/backgroundx900.jpg');
    instead of
    background-image: url('/images/backgroundx900.jpg');

    Link supplied doesn't work.

  3. #3
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    sorry. link will work now

  4. #4
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    the image you are trying to load as the background:

    http://217.46.159.226/images/backgroundx900.jpg

    cannot be found on the server. Make sure you entered the filename correctly or that the image is in fact uploaded to the correct spot.

    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  5. #5
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    the image is in http:217.46.159.226/shc/images/
    Is my ref path wrong?

  6. #6
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    yes. Instead of using the following:

    Code:
     background-image: url('/images/backgroundx900.jpg');
    use this instead:

    Code:
     background: url('images/backgroundx900.jpg');
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  7. #7
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    testsite already said it haha

  8. #8
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile

    Ok thanks everyone. Now works with full path ref. http etc
    I will try the alts mentioned also

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •