I followed the tips in the KB article: How to tweak the appearance of RadScheduler's cells and dropped the rsWrap height to 17px in my timelineview by using the following css setting:
However, now the heights of my resources in the are incorrect; they are still based on the old height. From looking at the CSS that is being rendered for the resources; I assumed that the divs with class=rsHoursWrapper corresponded to the divs with class=rsWrap b/c the numbers of them matched. Therefore, I tried the following CSS setting, but it did not work.
What am I missing?
Thanks.
| .RadScheduler_Default .rsTimelineTable div.rsWrap |
| { |
| height:17px; |
| } |
However, now the heights of my resources in the are incorrect; they are still based on the old height. From looking at the CSS that is being rendered for the resources; I assumed that the divs with class=rsHoursWrapper corresponded to the divs with class=rsWrap b/c the numbers of them matched. Therefore, I tried the following CSS setting, but it did not work.
| .RadScheduler_Default .rsTimelineView .rsHoursTable div.rsHoursWrapper |
| { |
| height: 17px; |
| } |
What am I missing?
Thanks.