Okay class pay attention. Here's a lil tip for all the shadetree style sheeters here. Mods and admins, go watch TV, we know you know this already <img src="http://www.ubbdev.com/forum/images/graemlins/tongue.gif" alt="" /> <br /> <br />If you are placing an image in a cell for a wrapper or whatever other idea you have, you need to establish a few things in your css tag setup. <br /> <br />.tag-name { <br />
background-image: url(/path/to/image.gif,jpg,png,jpeg); <= path to image. <br /> <br />
background-position: left middle; <= if you do NOT want the image to repeat, or have a special place for it to start from before it repeats, this is very important. <br /> <br />
background-repeat: no-repeat; <= this will only show the complete image (TD width/height permitting) and not "repeat" it all over the cell and/or table. The default is to repeat, so yes-repeat; is not used. You can also repeat it in one direction only. To repeat it horizontally and NOT vertically use repeat-x; To repeat it vertically and NOT horizontally, use repeat-y; . <br /> <br />
background-color: #ffffff; <= this is fairly straight forward. <br /> <br />height: 25px; <= size of image used. <br /> <br />width: 25px; <= size of image used. <br />} <br /> <br />Hope this helps <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />