• I am sorry if this has been answered before, but I have searched and I can only find instructions on how to change background.

    If I follow the background instructions, I see the image on the sides of the pages, but behind the text on the page, it is just a white background.

    What I want is for the background image to show up behind the text on the page itself also.

    thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You want to change the background declaration in #wrapper to “none”.

    #wrapper {
    background: none;
    margin-top: 20px;
    padding: 0 20px;
    }

    Go to style.css in your editor and find the wrapper class
    #wrapper {
    background-image:url(‘smiley.gif’);// The image location which you want to appear must be replaced with smiley.gif
    background-repeat:no-repeat;
    margin-top: 20px;
    padding: 0 20px;
    }
    This should work mostly , come back if you have some issues with this code.

    Thread Starter calisun

    (@calisun)

    Both of you, thank you for your answers.
    sacredpath, your solution is exactly what I was looking for, thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Background image in twentyten theme’ is closed to new replies.