Description

The wpforms_conversational_forms_enqueue_styles action is used to register and enqueues styles for forms created with the Conversational Forms addon.

Parameters

This action does not accept any parameters.

More Information

The action will register and enqueue dedicated stylesheets for forms created with the Conversational Forms addon.

Source

wpforms-conversational-forms/src/Frontend.php

Examples

/**
 * Enqueue your own stylesheet for Conversational Forms addon
 * 
 * @link  https://wpforms.com/developers/wpforms_conversational_forms_enqueue_styles/
 */

function wpfdev_convo_forms_custom_css() {

    wp_enqueue_style( 'style', get_stylesheet_directory_uri().'/name-of-your-css-file.css' );

}
add_action( 'wpforms_conversational_forms_enqueue_styles', 'wpfdev_convo_forms_custom_css', 10 );

Reference Articles

How to Enqueue a Stylesheet for Conversational Forms