Would be helpful since addresses are usually long and having the field a bit wider would make it easier to edit the text. Please advise.
Address field as shown in image below:
CodePudding user response:
Add this to the functions.php
file:
add_action('admin_head', 'custom_admin_stylez');
function custom_admin_stylez() {
echo '<style>
._billing_address_1_field {
width: 100% !important;
}
._billing_address_2_field {
width: 100% !important;
}
</style>';
}