It can be a little frustrating in SharePoint when the "Rich Text Editor" on the edit page of Wiki's, Blogs, or on certain lists is set to fixed column width. I certainly find it easier to blog in a fullscreen-width editor!
Here's the CSS to make it happen (warning, this syntax applies to ALL rich text editors!). The first does all normal forms and wikis:
#onetIDListForm, #onetIDListForm .ms-formbody, #onetIDListForm iframe[title="Rich Text Editor"]{
width:100% !important;
}
And this does the same for Blogs!
.ms-formbody span span div iframe, .ms-formbody span span table.ms-long{
width:100%; text-align:left;
}
Hope this helps.
No comments:
Post a Comment