ok your not going to like that this took me 3 minutes to find:
in stylesheet.css
Code:#navBreadCrumb { background-color: #000000; padding: 3px 0; border: 1px solid #ccc; background-image:url(http://www.nonfinite.org/images/barelythere.png); }Code:.centerBoxWrapper { border: 1px solid #9a9a9a; margin: 1.1em 0; height: 1%; background-image:url(http://www.nonfinite.org/images/blackwgrey1.png); }Code:.leftBoxContainer, .rightBoxContainer { border: 1px solid #ccc; margin: 0 0 1em 0; background-image:url(http://www.nonfinite.org/images/barelythere.png); }All of the images you are calling in the stylesheet need to be in your custom template images directory and then the images need to be called by being referenced relatively rather than absolutely......like the following example:Code:.sideBoxContent { background-color: #000000; padding: 0.4em; background-image:url(http://www.nonfinite.org/images/blackwgrey1.png); }You also have a second stylesheet being called.... stylesheet_bak.css with exactly the same mistakes....I gather that you don't want this stylesheet actually called....change the name to stylesheet.bakCode:background-image:url(../images/blackwgrey1.png);


I'm learning CSS as I go here.

