Insert Media Item dialog does not display scrollbar and Insert button with 1366x768 screen resolution


Description

The scrollbar and the Insert button might not be displayed in the Insert Media Item dialog with 1366x768 screen resolution. The issue occurs in the Content Editor, when opening the Insert Media Item dialog from the Rich Text Editor by clicking the Insert Sitecore Media button.

Solution

To display the scrollbar and clipped Insert button, proceed as follows:

  1. Open \sitecore\shell\Controls\Rich Text Editor\EditorPage.aspx file.
  2. Find the following line:
    <html style="overflow: hidden; width: 100%; height: 100%">
  3. Change the value of the overflow property from hidden to auto:
    <html style="overflow: auto; width: 100%; height: 100%">