Ooh, I like that fractal. Very op art. 
Code:
<style type="text/css">
body {
cursor: default;
background: #fff url(http://www.enzedblue.com/Fractals/Images/BlackAndWhite7.jpg) no-repeat fixed left;
color: black; /* this is just a guess */
}
table, tr, td, img {
background-color: transparent;
border: 0 none;
}
input {
background-color: transparent;
}
/*
* Note: I have removed all references to FONT elements.
* FONT elements should not be used, especially in conjunction
* with CSS. You may wish to replace them with spans.
*/
td, span, div, input, a {
color: #000;
font-family: serif;
}
a:link, a:hover {
cursor: default;
color: #000;
}
a:hover {
color: #ccf;
}
table table table { /* Two too many nested tables. Fix markup. */
width: 100%;
background-color: #fff;
}
.contactTable { /* Sounds to me like layout tables. Fix markup. */
width: 300px;
height:150px;
padding:0;
background: transparent url(http://www.jctimagehosting.com/tfmsc2/C1154415881.gif) no-repeat;
}
.contactTable table, table.contactTable td {
padding: 0;
border: 0;
background: transparent none;
}
.contactTable a img {
/* Huh? What's this for? */
visibility: hidden;
}
.contactTable a {
/* Mixing relative and absolute units is a very bad idea. */
display: block;
height: 28px;
width: 115px;
}
.contactTable .text {
/* Huh? What's this for? */
font-size: 0;
}
.tfms {
position: absolute;
left: 50%;
top: 151px;
display: block;
width: 10em;
height: 10em;
margin: 0 -5em;
font-size: 2em;
text-align: center;
}
</style>
It should be noted that I have no idea if this is the effect you want or not, or even if it will work with your markup. It is a rough guess only. I have also made notes pointing out indications of bad markup. As has been pointed out above, we really need to see both the current markup and the desired end result to do the job properly.
Bookmarks