4 Answers, 1 is accepted
0
Accepted

Shinu
Top achievements
Rank 2
answered on 13 Jun 2011, 11:27 AM
Hello Karam,
You can achieve this by overriding the default CSS like below.
CSS:
Thanks,
Shinu.
You can achieve this by overriding the default CSS like below.
CSS:
.rcTodayButton
{
display
:
none
;
}
Thanks,
Shinu.
0

Karam
Top achievements
Rank 2
answered on 13 Jun 2011, 12:39 PM
Thanks a lot Shinu , it works good .
but the "cancel" and "ok" buttons appear without any space between them , can i add some space ?.
but the "cancel" and "ok" buttons appear without any space between them , can i add some space ?.
0
Accepted

Shinu
Top achievements
Rank 2
answered on 13 Jun 2011, 01:50 PM
Hello Karam,
You can achieve this by setting the CSS Margin property.
CSS:
Thanks,
Shinu.
You can achieve this by setting the CSS Margin property.
CSS:
.rcOkButton
{
margin-right
:
30px
!important
;
}
Thanks,
Shinu.
0

Karam
Top achievements
Rank 2
answered on 13 Jun 2011, 10:20 PM
Thats works well , thank you :)