New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Change the background color of the RadEditor toolbar and apply rounded corners to the border of the content area

Description

How to Change the Background Color of the toolbar and apply rounded corners to the border around the content area

Solution

For lightweight render mode, you can use the following CSS classes to:

  • Change the toolbar background:
div.reToolBarWrapper {
    background-color: greenyellow;
}
  • Apply rounded corners to the content area border:
div.reContent {
    border-radius: 20px;
}

The final result will look like:

See More:

In this article