Ticket #119 (closed defect: fixed)
IE7 floated container
Reported by: | contradev | Owned by: | jf.hovinne |
---|---|---|---|
Priority: | major | Milestone: | 0.5 |
Component: | editor | Version: | trunk |
Keywords: | IE7 float | Cc: |
Description
When placing WYMeditor form inside a simple floated div, the editor becomes unuseable. Tested in PC IE7 (current), code taken from example file basic.html
<div style="float: right"> <form method="post" action=""> <textarea class="wymeditor"><p>Hello, World!</p></textarea> <input type="submit" class="wymupdate" /> </form> </div>
Change History
comment:2 Changed 3 years ago by totoro
- Status changed from new to closed
- Resolution set to fixed
I've been able to solve this by setting a fixed width to the wym_box:
.wym_box { 600px; }
I'd suggest adding this declaration in your page, since it's quite specific.
<head> ... <style type="text/css"> .wym_box { 600px; } </style> ... </head>
Feel free to reopen the ticket if you find a more generic solution (that could be included in the skin CSS).
Note: See
TracTickets for help on using
tickets.