New to Telerik UI for ASP.NET AJAX? Download 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.

"Example scheduler with header text on multiple lines"

Solution

The solution is to allow text wrap inside the .rsMainHeader class:

<style>
    html body .rsMainHeader {
        white-space: normal; /* Allow text to wrap */
    }
</style>

Additional resources:

In this article