I have a Rad Rotator inside a <td> tag. I can style the <td> inline with no adverse effect on the rotator:
<td style="background-color:White;font-family:Arial;font-size:11px;font-weight:bold;color:#192b11;text-align:left;text-decoration:none;text-indent:2px;width:100%;padding-top:2px;padding-bottom:2px;border-bottom:1px solid #cccccc;">
<telerik:RadRotator ID="RRtr" RotatorType="automaticadvance" Height="100px" Width="130px" ScrollDirection="Up" FrameDuration="6000" ItemHeight="90px" ItemWidth="130px" runat="server">
<Items>
<telerik:RadRotatorItem>
<ItemTemplate>
<asp:Image runat="server" ID="Image" ImageUrl='~/Images/FlagCA.png' Width="130px" height="50px" AlternateText="Customer Image" />
</ItemTemplate>
</telerik:RadRotatorItem>
<telerik:RadRotatorItem>
<ItemTemplate>
<asp:Image runat="server" ID="Image" ImageUrl='~/Images/FlagUS.png' Width="130px" height="50px" AlternateText="Customer Image" />
</ItemTemplate>
</telerik:RadRotatorItem>
</Items>
</telerik:RadRotator>
</td>
The above works perfectly. However, if I were to remove the style from the td tag and place it inside an external stylesheet like so:
<td class="rc_adTdItems">
<telerik:RadRotator ID="RRtr" RotatorType="automaticadvance" Height="100px" Width="130px" ScrollDirection="Up" FrameDuration="6000" ItemHeight="90px" ItemWidth="130px" runat="server">
<Items>
<telerik:RadRotatorItem>
<ItemTemplate>
<asp:Image runat="server" ID="Image" ImageUrl='~/Images/FlagCA.png' Width="130px" height="50px" AlternateText="Customer Image" />
</ItemTemplate>
</telerik:RadRotatorItem>
<telerik:RadRotatorItem>
<ItemTemplate>
<asp:Image runat="server" ID="Image" ImageUrl='~/Images/FlagUS.png' Width="130px" height="50px" AlternateText="Customer Image" />
</ItemTemplate>
</telerik:RadRotatorItem>
</Items>
</telerik:RadRotator>
</td>
.rc_adTdItems
{
background-color:White;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:bold;
color:#192b11;
text-align:left;
text-decoration:none;
text-indent:2px;
width:100%;
padding-top:2px;
padding-bottom:2px;
border-bottom:1px solid #cccccc;
}
Now, I've got arrow showing up on all sides of the Rotator - and I just couldn't get rid of them. This is most irregular and I'm wondering if anyone has seen this before and knows how to resolve this.
Thanks!