# Preview Styles
Elementor Core IntermediateWhen you develop addons that extend Elementor preview and need to register custom stylesheets, use the elementor/preview/enqueue_styles
action hook, which is fired when Elementor preview styles are registered and enqueued.
# Registering Preview Styles
In the example below, we'll register and enqueue custom stylesheets after Elementor preview styles are registered and enqueued:
function my_plugin_preview_styles() {
wp_register_style( 'preview-style-1', plugins_url( 'assets/css/preview-style-1.css', __FILE__ ) );
wp_register_style( 'preview-style-2', plugins_url( 'assets/css/preview-style-2.css', __FILE__ ), [ 'external-framework' ] );
wp_register_style( 'external-framework', plugins_url( 'assets/css/libs/external-framework.css', __FILE__ ) );
wp_enqueue_style( 'preview-style-1' );
wp_enqueue_style( 'preview-style-2' );
}
add_action( 'elementor/preview/enqueue_styles', 'my_plugin_preview_styles' );
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11