Declined
Last Updated: 14 Sep 2021 09:59 by ADMIN
When the RadRotator is set with the Sitefinity built-in skin and it is configured in a mode with buttons, the buttons are not displayed.
You can workaround the problem by adding the following CSS code on the page with the rotator:

<style type="text/css">
    div.RadRotator_Sitefinity .rrButton.rrButtonRight {
        right: 0;
    }
 
    div.RadRotator_Sitefinity .rrButton.rrButtonLeft {
        left: 0;
    }
</style>
Declined
Last Updated: 21 Jun 2022 22:50 by ADMIN
The problem happens when setting max-width to all Rotator divs using a weak CSS selector:
			.RadRotator div {
				max-width: 800px;
			}

It is strongly advised to avoid using such selectors for the controls, as they may break the rendering and functionality (as is the current case). The workaround it to make sure that only DIVs outside the control have been affected by this CSS rule.
Declined
Last Updated: 29 May 2015 18:00 by ADMIN
An exception will be thrown when there is a a standard ImageButton or a standard Button with UseSubmitBehavior="true" in the ItemTemplate of a RadRotator and it triggers a postback.