How can I do a background like this?

5 replies
  • WEB DESIGN
  • |
Is there a template available that I can make a custom background similar to this one?

Smarter Living Group - CafeMom

What I'd like to have in my background is paw prints with the option to add pictures similar to this site. I need a relatively easy template that doesn't require coding, or much anyway.

Thanks.
#background
  • Profile picture of the author Istvan Horvath
    What background image you are using - has NOTHING to do with the themes/templates.

    If a template has a middle section for the content and around it there is 'empty' space - you can apply any kind of bg image to the <body>.

    Basic CSS > read & learn & try: CSS Tutorial
    >> CSS Background
    Signature

    {{ DiscussionBoard.errors[6170386].message }}
  • Profile picture of the author codefish
    Just create a big image in Photoshop or Gimp, upload it to the server, and write this in the main css file
    body {
    background-image: url('exact/url/of/image.gif');
    background-repeat: no-repeat;
    background-position: center;
    }

    If it doesn't work, you will have to learn w3schools.com is a good source. Check out html and css
    {{ DiscussionBoard.errors[6181805].message }}

Trending Topics