Viewing 1 replies (of 1 total)
  • Plugin Author Danny van Kooten

    (@dvankooten)

    Hi there,

    You should be able to add CSS classes to your form like this.

    function myprefix_mc4wp_form_css_classes( $classes ) {
    	$classes[] = 'my-custom-class';
    	return $classes;
    }
    
    add_filter( 'mc4wp_form_css_classes', 'myprefix_mc4wp_form_css_classes' );

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Custom class or ID for the form’ is closed to new replies.