New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Dsipaly header text on multiple lines
Description
Display the RadScheduler header text in multiple lines by wrapping the text using the white-space CSS property.
Solution
The solution is to allow text wrap inside the .rsMainHeader
class:
CSS
<style>
html body .rsMainHeader {
white-space: normal; /* Allow text to wrap */
}
</style>
Additional resources: