Advertisement
salmancreation

Alignment - Responsive Elementor Control

Nov 8th, 2023
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1.  
  2.         $this->add_responsive_control(
  3.             'align_slide',
  4.             [
  5.                 'label' => __( 'Alignment', 'bdevselement' ),
  6.                 'type' => Controls_Manager::CHOOSE,
  7.                 'options' => [
  8.                     'left' => [
  9.                         'title' => __( 'Left', 'bdevselement' ),
  10.                         'icon' => 'fa fa-align-left',
  11.                     ],
  12.                     'center' => [
  13.                         'title' => __( 'Center', 'bdevselement' ),
  14.                         'icon' => 'fa fa-align-center',
  15.                     ],
  16.                     'right' => [
  17.                         'title' => __( 'Right', 'bdevselement' ),
  18.                         'icon' => 'fa fa-align-right',
  19.                     ],
  20.                 ],
  21.                 'toggle' => true,
  22.                 'default' => 'left',
  23.                 'selectors' => [
  24.                     '{{WRAPPER}}' => 'text-align: {{VALUE}};'
  25.                 ]
  26.             ]
  27.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement