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

CSS Questions

1 Answer 70 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Brad
Top achievements
Rank 2
Brad asked on 11 Mar 2010, 10:38 PM
I'm still trying to understand how to move things around in a Date Time picker control. I have a little date box for text input, about a 10-15 px space to the date popup button and then 100 or so pixels to the little clock. HOW do I change where these items are located in the control. Example please!

Thanks,

Joe B

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 12 Mar 2010, 08:21 AM

Hello Joe,

I guess you want to change teh location of image buttons of RadDateTimePicker using CSS. Here is the CSS that I tried in my application to achieve the same.

CSS:

 
    <style type="text/css">  
        .rcTimePopup  
        {  
            positionrelative !important;  
            left: -75px !important;  
            top50px !important;  
        }  
        .rcCalPopup  
        {  
            positionrelative !important;  
            left: -75px !important;  
            top50px !important;  
        }  
    </style> 

Add the style on page and set the required value for changing the location.

-Shinu.

Tags
Calendar
Asked by
Brad
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Share this question
or