Make content Area full width in page

0 Answers 52 Views
Editor
Jon
Top achievements
Rank 1
Jon asked on 26 Oct 2022, 03:20 AM | edited on 30 Oct 2022, 12:39 AM

Hi. 

I've read all the previous questions on this but still cannot get it to work.
I need the editor content area to be full width in the page.
Is this possible please?
No other css is affecting this - please see the attached image.
Thanks, Jon

Rumen
Telerik team
commented on 26 Oct 2022, 09:16 AM

Have you tried to set the RadEditor's Width property in percent, for example Width="100%" or Width="80%"?

If this does not work for some reason, please open a support ticket and provide a simple runnable project or a Fiddler Jam capture so that we can review and reproduce the problem.

Jon
Top achievements
Rank 1
commented on 30 Oct 2022, 12:49 AM

Thank you Rumen,

I'm not sure I eplained the problem well.
Please see the attached second image.
I'd like the content area to span to the very edges of the page, if possible.
Thanks, j

 

Rumen
Telerik team
commented on 31 Oct 2022, 10:53 AM | edited

Here is how via CSS to reduce the border thickness and stick the editor to the browser side borders:

<style> 
.RadEditor.reWrapper {
    border: none;
    padding: 0;
    position: absolute;
    left : 0;
}
</style>
<telerik:RadEditor runat="server" ID="RadEditor1" Width="100%"></telerik:RadEditor>

 

 

No answers yet. Maybe you can help?

Tags
Editor
Asked by
Jon
Top achievements
Rank 1
Share this question
or