
04-04-2010, 04:17 AM
|
|
|
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by guvner
I've fixed the problem - at least for my forum.
It was a CSS issue - the current editor.css had the following:
Code:
.editor_textbox.quickreply textarea {
height:100px;
}
.editor_textbox.quickreply iframe {
height:106px;
}
I changed that to:
Code:
.editor_textbox textarea {
height:100px;
}
.quickreply textarea {
height:100px;
width: 80%;
}
.editor_textbox.quickreply iframe {
height:106px;
}
and now my quick edit box no longer disappears behind the sidebar.
Mike 
|
Nice work Mike
Thank you for sharing it
|