This is a migrated thread and some comments may be shown as answers.

RadRotator Bullets

4 Answers 91 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 04 Dec 2010, 04:41 AM
Hi,

I've got a rotator displaying images. Each image has a bullet next to it which I'd like to remove

I've tried over-riding the style with no success.

<telerik:RadRotator ID="RadRotator1" runat="server" Width="700px" Height="300px" ItemWidth="250px" ItemHeight="300px"
                ScrollDirection="Left, Right" ScrollDuration="500"
                FrameDuration="2000" PauseOnMouseOver="false" RotatorType="ButtonsOver" InitialItemIndex="4"
                style="list-style-type:none;">
                <ItemTemplate>
                    <asp:Image ID="Image1" runat="server" ImageUrl='<%# Container.DataItem %>' AlternateText="<%# VirtualPathUtility.GetFileName(Container.DataItem.ToString()) %>" style="list-style-type:none;"/>
                </ItemTemplate>
            </telerik:RadRotator>

Any ideas?

Thanks

4 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 09 Dec 2010, 07:39 AM
Hello David,

The problem is most likely due to some global UL, LI CSS class in your stylesheet that is breaking the appearance of RadRotator.

My suggestion is to find the tag selector class which could be similar to this one

ul li
{
    list-style-type: circle;
}

and rewrite it to be class selector.

You can also see whether the following class fixes the problem:

<style type="text/css">
.rrItemsList, .rrItem
{
    list-style-type: none !important;
}
</style>

Best wishes,
Rumen
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
David
Top achievements
Rank 1
answered on 09 Dec 2010, 12:44 PM
Thanks adding

.rrItemsList, .rrItem
{
    list-style-type: none !important;
}

fixed the bullet in RadRotator.

I've got  a simliar 'bullet' in RadAsynchUpload any ideas?

Thanks
0
Yana
Telerik team
answered on 14 Dec 2010, 03:20 PM
Hi David,

Please add also the following styles:

.ruInputs, .ruInputs li {
  list-style-type: none !important;
}


All the best,
Yana
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
David
Top achievements
Rank 1
answered on 15 Dec 2010, 09:17 AM
Thanks Yana,

That worked!

Cheers
Tags
Rotator
Asked by
David
Top achievements
Rank 1
Answers by
Rumen
Telerik team
David
Top achievements
Rank 1
Yana
Telerik team
Share this question
or