Comments on: Piklist v0.9.9.3 is ready for testing! https://piklist.com/2015/10/15/piklist-v0-9-9-3-is-ready-for-testing/ Build Powerful Websites with WordPress Mon, 30 Sep 2019 20:12:59 +0000 hourly 1 https://wordpress.org/?v=5.5.8 By: Steve https://piklist.com/2015/10/15/piklist-v0-9-9-3-is-ready-for-testing/#comment-10433 Mon, 19 Oct 2015 14:54:19 +0000 http://piklist.com/?p=4475#comment-10433 Can you post a screenshot of the before and after?

]]>
By: anthonyabraira https://piklist.com/2015/10/15/piklist-v0-9-9-3-is-ready-for-testing/#comment-10430 Mon, 19 Oct 2015 14:33:48 +0000 http://piklist.com/?p=4475#comment-10430 Small stuff but wanted to let you know that I have twice now had to add a little wp admin css to adjust for the upload media option. It keeps overextending the image past its container dimensions. I have added this little tid bit that I think you guys should implement soon.

<?php
add_action('admin_head', 'piklist_tweaks');

function piklist_tweaks() {
echo '
li.attachment.selected.ui-sortable-handle[style] { max-width: 100% !important;}

}
‘;
}
?>

]]>