• Resolved steerage250

    (@steerage250)


    I have some long file names that cannot all be displayed below the thumbnails.

    Is there an alternative view (eg a List or Details view) where the full filename can be seen ?

Viewing 1 replies (of 1 total)
  • Plugin Author AlanP57

    (@alanp57)

    You can increase the space for displaying file names by using some custom CSS. Add these functions to your theme’s functions.php file:

    add_action('admin_head', 'mlf_custom_css');
    
    function mlf_custom_css() {
      echo '<style>
        ul.mg-media-list li {
          height: 200px;
        }
      </style>';
    }

    If you need more space, you can increase the height.

Viewing 1 replies (of 1 total)
  • The topic ‘List View? (long file names not visible)’ is closed to new replies.