Ok, I know what the issue is now, since you mentioned that the demo on DD looks perfect for you. Check out the default CSS for the script:
Code:
#ajaxticker1{
width: 200px;
height: 100px;
border: 1px ridge black;
padding: 5px;
background-color: #FEEEB8;
}
Code:
#ajaxticker1 div{ /*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV*/
background-color: #FEEEB8;
}
Notice the second CSS rule, which sets the background color of the inner DIV to be the same as the main DIV itself. Per the comments, this is to overcome a bug in IE that causes links to look fuzzy if without. In your example, you've removed this second rule. Add it back in.
Bookmarks