Results 1 to 2 of 2

Thread: cant get background image to show

  1. #1
    MISSG is offline New Member: Posts Will Be Moderated
    Join Date
    Jun 2011
    Posts
    1

    cant get background image to show

    Hi

    I am totally new to web designing and am only doing a site to start my new business (cake decorating). I have managed to get my head around a lot, and have uploaded what i have done so far to view online. However, for some reason, the image that i am using in the background wont show up, and i cant figure out why.

    .outer{
    background-image: url('../images/peach.png') repeat;
    padding:100px;
    padding-bottom:200px;
    }

    is this the right code to be using? what could i be doing wrong?
    i am a total novice, please help!

    Thank you x

  2. #2
    Join Date
    Apr 2011
    Posts
    110
    background-image doesn't allow the 'repeat value.

    Try

    .outer{
    background: url('../images/peach.png') repeat;
    padding:100px;
    padding-bottom:200px;
    }

Similar Threads

  1. Help me to show the image in my site
    By shanthi in forum General Questions
    Replies: 1
    Last Post: 29 Feb 2008, 01:57 AM

Posting Permissions

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