No need to apologize, place it here as shown in your page's code:
Code:
<link href="../../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
a:link {
color: #999;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #999;
}
a:hover {
text-decoration: underline;
color: #C00;
}
a:active {
text-decoration: none;
}
body {
background-color: #333;
}
#master0 div {
background: white url(images_main/bkgrd2.jpg) no-repeat 0 -25px;
}
-->
</style></head>
<body text="#CCCCCC" onLoad="MM_timelinePlay('Timeline1')">
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
<tr valign="top">
<td height="75" colspan="4" alig . . .
By way of a partial explanation, the script itself generates the element with the id of master0, and places two divisions inside it to hold the fading images. This style I'm suggesting overrides the script's generated style for those divisions, at least as far as the background property for them goes.
Also, although I believe it is unnecessary in this case, it cannot hurt to add the !important keyword after the directive:
Code:
#master0 div {
background: white url(images_main/bkgrd2.jpg) no-repeat 0 -25px!important;
}
For more information on how the background style property works, see:
http://www.eskimo.com/~bloo/indexdot...colorbg/bg.htm
or your favorite css style reference.
Any more questions, feel free to ask.
Bookmarks