Table of contents ▼▲
On this new version of the wiki 0.2.31 the edit box, on the edit page's has only 3 lines height :x (on every skin but Skin1)
On IE it shows correctly.. Plz tell me a fix for this
Bye, Gremlin
Hi Gremlin... thanx for report.. I downloaded Firefox late last night and had same problem. I will play with the textarea when I get some time, but I dont think it expands the 'overflow: visible;'. IE simply makes the box big enough, whereas Firefox is taking the textarea default of 3 lines.
Skin1 sets the row height and width to be a fixed size, so may go back to this method. darren
Hi. The same bug occurs in Opera browser, in Opera the edit box has only 2 lines height. 'Aquarius
Thanx Aquarius... I will revert back to the rows/cols method as before. 'Darren
Temporary Fix
For a temporary fix, add the following to the wikidx.css in the default skin
textarea.edit {
font-family:monospace;
border: 1px solid #black;
color: Black;
background-color: white;
font-size:95%;
padding: 2px;
width:100%;
height:200px;
}
and then modify the edit.etp textarea to be
<textarea id="text" name="text" class="edit"
onkeydown='if (event.keyCode == 27) event.returnValue=false;'
>
Play with the height attribute to give more lines...