• Resolved filip95

    (@filip95)


    We have issue with pdf files in mlf, under this type of files we don’t have captions (attachments name). File thumbnail overlap caption.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter filip95

    (@filip95)

    mlf-Caption

    Plugin Author AlanP57

    (@alanp57)

    Adding some custom css would reduce the height of the thumbnails. This code can be added to your theme’s functions.php file:

    add_action('admin_head', 'mlf_custom_css');
    
    function mlf_custom_css() {
      echo '<style>
        .media-attachment, .media-attachment img, a.tb-media-attachment img, a.media-attachment img {
          height: 135px !important;
        }
      </style>';
    }
    Thread Starter filip95

    (@filip95)

    This resolved issue. Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Missing caption under pdf file type’ is closed to new replies.