/ all snippets

Remove Border on Focus Mode on Elementor Form Widget

This CSS snippet removes border on focus mode on Elementor Form widget.

If you don't have Elementor Pro, you can replace the prefix of "selector" with a CSS class you can define yourself. To add the CSS snippet, you can use the HTML widget.

selector .elementor-field-group input:focus,
selector .elementor-field-group textarea:focus,
selector .elementor-field-group select:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}