Hide Dropdown Icon

Hi, I want to hide the dropdown icon of Gravity Forms

Hi Abey,
You can use the following CSS Snippet to remove the dropdown icon on all of the dropdown fields in Appearance → Customize → Additional CSS .

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

Hi, what custom CSS code can I use to align the Submit button to the right? I was styling it with an Elementor Addon

Hey Abey,
Please try the following code to align the submit button to the right for all Gravity Forms forms.

Code:

[id^="gform_"] .gform_footer {
  justify-content: flex-end;
}

Preview:

Give it a try, and let me know how that goes! :smile:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.