Hi,
I have a general problem on all my pages, I can not change the order in Mansonry Gallery
Has never been a problem before
Hope you can help asap ..
BR, Pete
Hey Peter,
This is WordPress problem unfortunately: https://core.trac.wordpress.org/ticket/54902. It will be fixed in the next WordPress release. If you need this working quicker, then please try this in 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
Hey Rikard,
Thanks for at quick solution.
Best regards, Pete