I need help with fixing width of the dropdown field.
Please look at the pick up date field on the below URL.This field is not getting displayed properly.
https://ravenwoodband.com/store/donation-for-marching-band-trees/
How can I increase the width of the field so it shows the complete text?
I am using WP 6.2.3 Theme : Dance Studio
Can I use custom CSS to fix this?
If you want to show complete text then try adding this
select#ec_option1 {
height: 100%;
}
Also If you want to make it in full width with readable text then try adding this
select#ec_option1 {
height: 100%;
width: 100%;
}
Also add important if it is not working. Hope this work for you.