PDA

View Full Version : tiling background


lostdreamer
7-6-02, 12:37 AM
hey hey:

have a question regarding tiling backgrounds.

on this site (http://www.ranchomurieta.org), there is a background image (see attached). on an 800x600, it appears just fine (horizontal tile). however, on a screen res of 1280x1024, the background image appears tiled both vertically and horizontally. how do i change this tiling?

Raven
7-6-02, 04:13 AM
you would like the background to only tile horizontally. You can do this by using CSS:

<style>
Body {background-repeat : repeat-x;}
</style>

This will cause the background to only tile across the page.

Hope that helps!

lostdreamer
7-6-02, 11:18 AM
thank you very much!

Raven
7-6-02, 05:24 PM
My pleasure!

TERRELL
7-16-02, 05:58 PM
:)