somewhere in your code you will see something like this :
CODE
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
except instead of those 's you will have some sort of content. tables are how your page is layed out.
here is an explainer of tables though you need some html background knowledge to get it :
http://www.dreamincode.net/forums/showtopic19252.htmanyways, stylesheets, also known as cascading style sheets (css) are a way to format and change the way your page looks . the
CODE
background-color :transparent;
is a style attribute of tables.
at the beginning of your page in the head area of the html there should be a style section.
it will look like this :
CODE
<style type="text/css">
<!--
-->
</style>
but have a bunch of stuff in it.
so just add table to it and the attribute transparent
CODE
<style type="text/css">
<!--
table {
background-color: transparent;
}
-->
</style>
not sure if that made sense completely. see if you get it.