elementor color control

Solutions on MaxInterview for elementor color control by the best coders in the world

showing results for - "elementor color control"
Daniel
28 Feb 2018
1$this->add_control(
2			'title_color',
3			[
4				'label' => __( 'Title Color', 'plugin-domain' ),
5				'type' => \Elementor\Controls_Manager::COLOR,
6				'scheme' => [
7					'type' => \Elementor\Scheme_Color::get_type(),
8					'value' => \Elementor\Scheme_Color::COLOR_1,
9				],
10				'selectors' => [
11					'{{WRAPPER}} .title' => 'color: {{VALUE}}',
12				],
13			]
14		);
15