Is it possible to have a Rad Editor with no borders? I've tried using the css from the article to display an Editor as a textbox, but I still get a top and bottom border for the editor. I'm trying to use several editors on one page and create a custom display so they look like one, allowing me to save the text in particular chunks rather than as a whole.
Here is the code I am using and attached is an image of the result.
Here is the code I am using and attached is an image of the result.
<style type="text/css"> .reWrapper_corner, .reWrapper_center { display: none !important; } .reLeftVerticalSide, .reRightVerticalSide, .reToolZone, .reToolCell { background: white !important; } .reContentCell { border-width: 0 !important; } .reWrapper { border: 0 !important; } .RadEditor { filter: chroma(color=c2dcf0); } .rade_toolbar.WebBlue .ShowHistory { background-image: url(Images/history.png); } </style> <telerik:RadEditor ID="txtEditor1" runat="server" EditModes="Design" ToolbarMode="PageTop" ToolsFile="~/NoTools.xml" ToolsWidth="684px" Width="99%" AutoResizeHeight="true" ContentAreaMode="Div" BorderStyle="None"telerik:RadEditor>
<telerik:RadEditor ID="txtEditor2" runat="server" EditModes="Design" ToolbarMode="PageTop" ToolsFile="~/NoTools.xml" ToolsWidth="684px" Width="99%" AutoResizeHeight="true" ContentAreaMode="Div" BorderStyle="None" ></telerik:RadEditor>
