I have a problem with 2 of my 10 client’s websites.
For some reason content on the back-end no longer wraps properly into two columns – I don’t mean the Screen Options settings changing.
The same panels are there, but you have to scroll right over to the right hand side of the screen to see panels that were previously in column 1.
I have tried using 1 column instead but it just isn’t practical as the Update button is nowhere near the content I am editing.
I have read updating PHP might help but it hasn’t.
I have also tried re-installing WordPress but that didn’t work. The website is using 6.6.2.
I can send you a screenshot if that helps?
Hey ColinWalton,
Thank you for the inquiry.
This might be related to the following thread:
// https://kriesi.at/support/topic/avia-builder-only-slightly-visible-appear-far-right/#post-1467634
Please try using the provided code in the functions.php file:
function ava_custom_admin_styles() {
echo '
<style>
#postbox-container-2 { clear: left; }
.index-php #postbox-container-2 { clear: none; }
</style>
';
}
add_action('admin_head', 'ava_custom_admin_styles');
Best regards,
Ismael