Forum Moderators: not2easy
I've been banging my head against the wall trying to figure this out. Is it possible? I've been through all sorts of CSS classes and cannot get the effect I'm looking for.
In summary...
1. I need a background image that tiles vertically.
2. I need a background image that also tiles horizontally.
3. I need these background images on every page of the site.
This is what I am using now in my body attribute for the left side vertical tile...
background-repeat:repeat-y;
background-image:url('/images/left-blue-tile.jpg');
layer-background-image:url('/images/left-blue-tile.jpg');
P.S. The layer-background is the workaround for NN4+. It is not valid CSS according to the W3C but it solves the issue of being able to assign a background image to the page.
I've already tried positioning a <div> at the right side of the page that had a width:100%. That does not work, creates a horizontal scroll bar. The tiling effect works great but the page width also grows. I need something liquid.