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

customizing "more" link in month view

2 Answers 52 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Pooja
Top achievements
Rank 1
Pooja asked on 02 Feb 2012, 01:16 AM
Please let me know if this is possible. I want to replace"more" link in month view with an image button. Please let me know if this is feasible. if not atleast how can I change the color of "more" link.

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 02 Feb 2012, 05:20 AM
Hello Pooja,

Try the following CSS to replace the "more" link in month view with an image button.
CSS:
<style type="text/css">
.RadScheduler .rsMonthView .rsShowMore
{
  background-image:url("../Images/icon_successful.gif") !important;
  text-indent: -3000px;
}
</style>

Try this CSS to change the color of "more" link only.
CSS:
<style type="text/css">
.RadScheduler .rsMonthView .rsShowMore
{
  color:Red !important;
}
</style>

Thanks,
Princy.
0
Pooja
Top achievements
Rank 1
answered on 03 Feb 2012, 02:34 AM
It worked like a charm!!! Thanks.
Tags
Scheduler
Asked by
Pooja
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Pooja
Top achievements
Rank 1
Share this question
or