websydaisy
Member
Posted 1 year ago #
I've started noticing that sometimes text from my content ends up sitting next to or on top of the tabs for the different multi-edit sections. It was ugly but not too bothersome so I have been ignoring it. But today a client told me the editor for one of her pages was so hosed she couldn't use it - I looked, and oy, what a mess!
Click here for a screenshot
http://wordpress.org/extend/plugins/pagely-multiedit/
This should help. In multiedit.js, change line 33.
from: jQuery(‘#multiEditControl’).append(jQuery(‘#multiEditHidden span’));
to: jQuery(‘#multiEditControl’).append(jQuery(‘#multiEditHidden span.multieditbutton’));
websydaisy
Member
Posted 1 year ago #
Yes! That fixed it, thank you SO much!
You're welcome.
I noticed your tabs need some fine-tuning as well. Mine are looking better since I changed the stylesheet. These are the ones:
#multiEditControl {
border-bottom: 1px solid #21759B;
line-height: 2em;
height: 2em;
margin: 3em 0 1em 0;
display: block;
}
#multiEditControl span.multieditbutton {
display:inline-block;
margin:-1px 5px 0 5px;
background:#f1f1f1;
border:1px solid #ccc;
border-bottom: 0px;
padding: 0 10px;
cursor: pointer;
color: #21759B;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
-moz-border-radius-topleft:6px;
-moz-border-radius-topright: 6px;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
}
#multiEditControl span.multieditbutton.selected {
background:#fff;
border-color: #21759B;
padding-bottom: 1px;
}