New to Telerik UI for ASP.NET AJAX? Start a 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:
CSS
div.reToolBarWrapper {
background-color: greenyellow;
}
- Apply rounded corners to the content area border:
CSS
div.reContent {
border-radius: 20px;
}
The final result will look like:
See More:
- [Customize Content Area](Change the background color of the RadEditor toolbar and apply rounded corners over the border of the content area)
- Improve Your Debugging Skills with Chrome DevTools Blog