Hi @clarrencemarketingism
Thanks for reaching out!
It’s displayed in that manner because we’ve set a max-height on that field.
You can use the code snippet below to increase the height by customizing the max-height value.
Here’s a screenshot reference from my local site:
https://a.supportally.com/nw0Ja1
https://a.supportally.com/OaBZuG
Here’s the code snippet –
<?php
// Increase max-height of AIOSEO Details column from wp-admin area using CSS
add_action('admin_head', 'my_custom_css');
function my_custom_css() {
echo '<style>
.aioseo-details-column .edit-row.edit-description {
max-height: fit-content;
}
</style>';
}
You can add this code snippet directly in the functions.php file of your theme or follow our documentation here to add this through the WP Code plugin –
https://aioseo.com/docs/how-do-i-use-your-api-code-examples/
I hope this will help!