I hope I will explain this well.
I have a div that has a style=”float: right;” and in this div I have a table with some editor fields.
But now I would like to have two text editor boxes (in .NET MVC3 @Html.TextAreaFor) that would sit under these edit fields.
But what happens is that the text editor boxes appear somewhere in the middle of the page and not under the right floated editor fields.
How do I make the text editors appear under the right floated editor fields?
Thank you
I have solved this by putting the right aligned div in the right cell of a two cell, one row table that I gave 100% width.
That forces the next view with text editor fields fit under this table because it is 100% in width.
It is not very elegant but it does the trick for now.
Thank you