Forum Moderators: not2easy
Is it possible to only have the gif tile across my 900 pixel-wide page ONCE?
My problem is that if a given page is 800 pixels deep or less, the background is OK. But say the client wants to add more material and the page grows to more than 800 pixels, then there's the dark top of the background gif as the tiling starts over again.
I want to set the page background color to the color of the very bottom of the gradient and therefore have no depth color issues regardless of how long the page grows.
Thanks
You can also use CSS shorthand:
background: #your-color url(image.jpg) repeat-x;
Where "your-color" is the bg color (#ffffff, etc.)