Dropwdown selector has the word/sentence too near border top. I need the same space between top and bottom.
Hello. It looks like Elementor is applying styles to that drop down in Chromium browsers. You can add this CSS to your theme (or child theme) stylesheet or via the Appearance Customizer (Appearance → Customize → Additional CSS):
.gform_wrapper select#input_3_68 {
padding-top: 10px!important;
}
See also this article for additional information about placing CSS snippets: Where to Put Your Custom CSS - Gravity Forms Documentation
Here’s what it looks like in Chrome:
Before:
After:
Perfect, this happens in all selectors I used:
.gform_wrapper select {
padding-top: 10px!important;
}