Advertisement
Konark

Untitled

Oct 11th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. $this->add_responsive_control(
  2.                 'logo_icon_alignment',
  3.                 array(
  4.                     'label'   => esc_html__( 'Alignment Icon', 'elementor' ),
  5.                     'type'    => Controls_Manager::CHOOSE,
  6.                     'default' => 'center',
  7.                     'options' => array(
  8.                         'left' => array(
  9.                             'title' => esc_html__( 'Left', 'elementor' ),
  10.                             'icon'  => 'fa fa-align-left',
  11.                         ),
  12.                         'center' => array(
  13.                             'title' => esc_html__( 'Center', 'elementor' ),
  14.                             'icon'  => 'fa fa-align-center',
  15.                         ),
  16.                         'right' => array(
  17.                             'title' => esc_html__( 'Right', 'elementor' ),
  18.                             'icon'  => 'fa fa-align-right',
  19.                         ),
  20.                     ),
  21.                     'selectors' => array(
  22.                         '{{WRAPPER}} .cmsmasters_logo_icon' => 'text-align: {{VALUE}};',
  23.                     ),
  24.                 )
  25.             );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement