You should set:
Code:
slides3.fadecolor='#003366';
in with the other optional properties for slides3, or put this style on your page in the stylesheet:
Code:
#master0 div {
background-color:#003366;
}
These styles:
Code:
* {
font-family:arial;
font-size:10pt;
}
div#show3 {
background-color:#efefef;
width:140px;
margin:0 auto;
border:1px solid #444444;
}
div#show3 table td, div#show4 table td {
height:24px;
background-image:url('38.gif');
}
div#show4 table td {
background-image:url('40.gif');
}
div#show3 table input, div#show4 table input {
outline-style:none;
}
are all optional, and with the exception of (which does nothing now, because there is no text yet):
Code:
* {
font-family:arial;
font-size:10pt;
}
will do nothing on that page because there are no hooks in the layout for them. Since you obviously just copied them from the demo page without knowing what they do, I'd get rid of all of them.
Bookmarks