Doug wrote:
>The image is huge intentionally, to keep it from tiling in a
>normal-sized browser window. Also because I couldn't figure out the css
>marking to turn off repeating.
Here's the CSS for your background image:
.background-main {
background-image: url("picts/background.jpg");
background-repeat: repeat-x;
background-position: 0px 0px;
}
If you change "repeat-x" to "no-repeat" you'll turn off repeating :)
In fact, you could change that whole class selector to the following:
.background-main {
background: url("picts/background.jpg") no-repeat;
}
--
Mark Roberts
Photography & Multimedia
www.robertstech.com
--
PDML Pentax-Discuss Mail List
[email protected]
http://pdml.net/mailman/listinfo/pdml_pdml.net
to UNSUBSCRIBE from the PDML, please visit the link directly above and follow
the directions.