Reputation: 12497
I’m having a hard time here. I have got two individual pieces of code working nicely but when I put them together there it all goes wrong.
Here is when I try and try to put it in my field box
<div class="field_box">
<label field_id="None" for="position">Test2</label>
<div class="fieldwrapper">
<textarea class="uEditorCustom" name="textarea"></textarea>
</div>
</div>
I've tried a few things but haven't had any luck. What am I doing wrong?
Upvotes: 1
Views: 90
Reputation: 7597
I don't think you're doing anything wrong. But the editor is throwing CSS into the mix that's not playing nicely with your own.
I added these two lines to the bottom of the CSS, and I think the results (at least in FF) are what you're after.
.fieldwrapper {overflow:hidden;}
.uEditor { float:right }
Upvotes: 2