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

Styling Help

2 Answers 54 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Michael O'Flaherty
Top achievements
Rank 2
Michael O'Flaherty asked on 22 May 2013, 03:06 PM
Hi!

I have been racking my brain trying to style two lines in the calendar control: the border of the calendar, and the divider line on the popup (see attached.) Via CSS, how can I override these lines?

Thanks!

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 23 May 2013, 12:51 PM
Hi,

Try the following css to style the border and divider line of calendar.
CSS:
     /*for divider line*/
.RadCalendarMonthView_Default #rcMView_Feb, .RadCalendarMonthView_Default #rcMView_Apr, .RadCalendarMonthView_Default #rcMView_Jun, .RadCalendarMonthView_Default #rcMView_Aug, .RadCalendarMonthView_Default #rcMView_Oct, .RadCalendarMonthView_Default #rcMView_Dec
 {
   border-right:1px solid red !important;
 }
 
    /*for main border*/
.RadCalendar .rcMain
 {
   border:1px solid red !important;
 }

Thanks,
Princy.
0
Michael O'Flaherty
Top achievements
Rank 2
answered on 23 May 2013, 02:56 PM
Worked great! Thanks for your help!
Tags
Calendar
Asked by
Michael O'Flaherty
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
Michael O'Flaherty
Top achievements
Rank 2
Share this question
or