In template_css.css you will find a general class for all of your modules. This class determines how your modules look and they will all look the same unless you assign a suffix to a given module. That module can then use different rules. Here is an example using the suffix _login which you might use with the login module if you wanted it to look different than other modules:
This one puts a gray background behind the module headers.
Code:
table.moduletable {
width:100%;
}
table.moduletable th {
font-weight: bold;
background-color: #E4E4E4;
border-bottom: #C0C0C0 solid 1px;
padding: 5px;
}
table.moduletable td {
font-weight: normal;
padding: 5px;
} This one has no background.
Code:
table.moduletable_login {
width:100%;
}
table.moduletable_login th {
font-weight: bold;
padding: 5px;
}
table.moduletable_login td {
font-weight: normal;
padding: 5px;
} I hope this helps,
David