I am suddenly unable to rearrange Gallery items that display thumbnails. I am using Gallery with Preview (large image above & thumbnails below).
After adding 2 new images I cannot move them to become the first 2 images.
The images previously were able to Drag & Drop – but they no longer move.
Tested in Firefox & Chrome.
Using latest Enfold and latest WP version.
Hey cindybird52,
Please try adding this to your functions.php file:
function ava_custom_css_admin_mod() {
echo '<style>
.wp-core-ui .attachments:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
</style>';
}
add_action('admin_head', 'ava_custom_css_admin_mod');
Best regards,
Rikard
For others reading this, I added the code you provided to the Child Theme Functions.php and it worked perfectly. I can now easily rearrange the order of photos within the Gallery.
Thank you so much! I appreciate the quick reply.