Plugin Directory

Changeset 2686404


Ignore:
Timestamp:
03/01/2022 08:27:50 AM (4 years ago)
Author:
khuda
Message:

Version 1.4.16

Location:
definitive-addons-for-elementor/trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • definitive-addons-for-elementor/trunk/css/dafe_style.css

    r2681173 r2686404  
    591591/*  */
    592592
     593/* Icon Box */
     594.dafe-icon-box-entry .dafe-icon-container {
     595 text-align:center;display:inline-block;
     596}
     597.dafe-icon-box-desc {
     598    text-align:center;
     599}
     600.dafe-icon-box-entry.left,.dafe-icon-box-desc.left {
     601    text-align:left;
     602}
     603.dafe-icon-box-entry.center,.dafe-icon-box-desc.center {
     604    text-align:center;
     605}
     606.dafe-icon-box-entry.right,.dafe-icon-box-desc.right {
     607    text-align:right;
     608}
     609/************/
    593610
    594611/* Counter */
     
    600617    font-size:28px;
    601618}
    602 
     619.counter-content .counter-text.block {
     620  display:block;
     621}   
     622.counter-container .icon-container {
     623    text-align:center;display:inline-block;
     624}
     625
     626.counter-container.left {
     627    text-align:left;
     628}
     629.counter-container.center {
     630    text-align:center;
     631}
     632.counter-container.right {
     633    text-align:right;
     634}
    603635/* Counter End */
    604636
  • definitive-addons-for-elementor/trunk/definitive_adons_elementor.php

    r2681173 r2686404  
    44 * Description: Advanced Widgets for Elementor Page Builder.
    55 * Plugin URI:  https://softfirm.net/
    6  * Version:     1.4.15
     6 * Version:     1.4.16
    77 * Author:      Softfirm
    88 * Author URI:  https://softfirm.net/definitive-addons/
     
    3131     * @var string The plugin version.
    3232     */
    33     const VERSION = '1.4.15';
     33    const VERSION = '1.4.16';
    3434
    3535    /**
  • definitive-addons-for-elementor/trunk/inc/Elements/Category_Box.php

    r2675151 r2686404  
    88namespace Definitive_Addons_Elementor\Elements;
    99use Elementor\Group_Control_Background;
     10use Elementor\Group_Control_Box_Shadow;
     11use Elementor\Group_Control_Text_Shadow;
     12use Elementor\Group_Control_Text_Stroke;
    1013use Elementor\Repeater;
    1114use Elementor\Controls_Manager;
     
    8083            ]
    8184        );
     85
     86       
     87        $this->add_control(
     88           'ovl_background',
     89            [
     90                'label' => __( 'Overlay Background Color', 'definitive-addons-for-elementor' ),
     91                'type' => Controls_Manager::COLOR,
     92                'selectors' => [
     93                    '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .product-category-box-text' => 'background-color: {{VALUE}}',
     94                ],
     95            ]
     96        );
     97       
     98        $this->add_control(
     99           'ovl_hvr_background',
     100            [
     101                'label' => __( 'Overlay Background Hover Color', 'definitive-addons-for-elementor' ),
     102                'type' => Controls_Manager::COLOR,
     103                'selectors' => [
     104                    '{{WRAPPER}} .product-category-box-text:hover,{{WRAPPER}} .product-category-box-text:hover .product-cat-box-title a' => 'background-color: {{VALUE}}',
     105                ],
     106            ]
     107        );
     108       
     109        $this->add_responsive_control(
     110          'dafe_cat_ovl_paddings',
     111            [
     112                'label' => __( 'Overlay Padding', 'definitive-addons-for-elementor' ),
     113                'type' => Controls_Manager::DIMENSIONS,
     114                'size_units' => [ 'px', '%' ],
     115                'selectors' => [
     116                    '{{WRAPPER}} .product-category-box-text' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
     117                ],
     118            ]
     119        );
     120       
     121        $this->add_group_control(
     122            Group_Control_Box_Shadow::get_type(),
     123            [
     124                'label' => __( 'Overlay Shadow', 'definitive-addons-for-elementor' ),
     125                'name'     => 'dafe_icon_box_shadow',
     126
     127                'selector' => '{{WRAPPER}} .dafe-icon-box-entry',
     128            ]
     129        );
     130       
     131       
     132
     133
     134        $this->end_controls_section();
     135       
     136        // Overlay Title style
     137       
     138         $this->start_controls_section(
     139            'overlay_section_title_style',
     140            [
     141                'label' => __( 'Title Style', 'definitive-addons-for-elementor' ),
     142                'tab'   => Controls_Manager::TAB_STYLE,
     143            ]
     144        );
    82145       
    83146        $this->add_control(
    84147           'title_color',
    85148            [
    86                 'label' => __( 'Text Color', 'definitive-addons-for-elementor' ),
    87                 'type' => Controls_Manager::COLOR,
    88                 'selectors' => [
    89                     '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .box-product-count a' => 'color: {{VALUE}}',
    90                 ],
    91             ]
    92         );
    93         $this->add_group_control(
    94             Group_Control_Background::get_type(),
    95             [
    96                 'name' => 'ovl_background',
    97                 'selector' => '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .product-category-box-text',
    98                 'exclude' => [
    99                     'image'
    100                 ]
    101             ]
    102         );
    103         $this->add_group_control(
     149                'label' => __( 'Title Color', 'definitive-addons-for-elementor' ),
     150                'type' => Controls_Manager::COLOR,
     151                'selectors' => [
     152                    '{{WRAPPER}} .product-cat-box-title a' => 'color: {{VALUE}}',
     153                ],
     154            ]
     155        );
     156       
     157        $this->add_control(
     158           'title_hover_color',
     159            [
     160                'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ),
     161                'type' => Controls_Manager::COLOR,
     162                'selectors' => [
     163                    '{{WRAPPER}} .product-cat-box-title a:hover' => 'color: {{VALUE}}',
     164                ],
     165            ]
     166        );
     167       
     168        $this->add_group_control(
    104169            Group_Control_Typography::get_type(),
    105170            [
    106171                'name' => 'title_fonts',
    107                 'selector' => '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .box-product-count',
     172                'selector' => '{{WRAPPER}} .product-cat-box-title a',
    108173               
    109174            ]
    110175        );
    111 
    112 
     176       
     177        $this->add_group_control(
     178            Group_Control_Text_Shadow::get_type(),
     179            [
     180               
     181                'name'     => 'dafe_title_text_shadow',
     182
     183                'selector' => '{{WRAPPER}} .product-cat-box-title a',
     184            ]
     185        );
     186       
     187       
     188        $this->add_group_control(
     189            Group_Control_Text_Stroke::get_type(),
     190            [   
     191               
     192                'name' => 'ovl_title_stroke',
     193                'selector' => '{{WRAPPER}} .product-cat-box-title a',
     194            ]
     195        );
     196       
     197   
    113198        $this->end_controls_section();
     199       
     200        // Overlay Count style
     201       
     202         $this->start_controls_section(
     203            'overlay_section_count_style',
     204            [
     205                'label' => __( 'Count Style', 'definitive-addons-for-elementor' ),
     206                'tab'   => Controls_Manager::TAB_STYLE,
     207            ]
     208        );
     209       
     210        $this->add_control(
     211           'count_color',
     212            [
     213                'label' => __( 'Count Color', 'definitive-addons-for-elementor' ),
     214                'type' => Controls_Manager::COLOR,
     215                'selectors' => [
     216                    '{{WRAPPER}} .box-product-count a' => 'color: {{VALUE}}',
     217                ],
     218            ]
     219        );
     220       
     221        $this->add_control(
     222           'count_hover_color',
     223            [
     224                'label' => __( 'Count Hover Color', 'definitive-addons-for-elementor' ),
     225                'type' => Controls_Manager::COLOR,
     226                'selectors' => [
     227                    '{{WRAPPER}} .box-product-count a:hover' => 'color: {{VALUE}}',
     228                ],
     229            ]
     230        );
     231       
     232         $this->add_group_control(
     233            Group_Control_Typography::get_type(),
     234            [
     235                'name' => 'count_fonts',
     236                'selector' => '{{WRAPPER}} .box-product-count',
     237               
     238            ]
     239        );
     240
     241   
     242        $this->add_group_control(
     243            Group_Control_Text_Shadow::get_type(),
     244            [
     245               
     246                'name'     => 'dafe_count_text_shadow',
     247
     248                'selector' => '{{WRAPPER}} .box-product-count',
     249            ]
     250        );
     251       
     252       
     253        $this->add_group_control(
     254            Group_Control_Text_Stroke::get_type(),
     255            [   
     256               
     257                'name' => 'ovl_count_stroke',
     258                'selector' => '{{WRAPPER}} .box-product-count',
     259            ]
     260        );
     261         $this->end_controls_section();
     262        // Image style
     263       
     264         $this->start_controls_section(
     265            'overlay_section_image_style',
     266            [
     267                'label' => __( 'Image Style', 'definitive-addons-for-elementor' ),
     268                'tab'   => Controls_Manager::TAB_STYLE,
     269            ]
     270        );
     271       
     272       
     273        $this->add_group_control(
     274            Group_Control_Border::get_type(),
     275            [   
     276               
     277                'name' => 'cat_image_border',
     278                'selector' => '{{WRAPPER}} .product-category-box img',
     279            ]
     280        );
     281       
     282        $this->add_group_control(
     283            Group_Control_Box_Shadow::get_type(),
     284            [
     285                'name'     => 'cat_image_shadow',
     286
     287                'selector' => '{{WRAPPER}} .product-category-box img',
     288            ]
     289        );
     290        $this->end_controls_section();
     291
    114292
    115293       
  • definitive-addons-for-elementor/trunk/inc/Elements/Category_List.php

    r2675151 r2686404  
    1111use Elementor\Controls_Manager;
    1212use Elementor\Group_Control_Border;
     13use Elementor\Group_Control_Box_Shadow;
    1314use Elementor\Group_Control_Image_Size;
    1415use Elementor\Group_Control_Typography;
     
    285286            ]
    286287        );
     288       
     289        $this->add_control(
     290           'inner_background_hover_color',
     291            [
     292                'label' => __( 'Inner Background Hover Color', 'definitive-addons-for-elementor' ),
     293                'type' => Controls_Manager::COLOR,
     294                'selectors' => [
     295                    '{{WRAPPER}}  .category_repeaters:hover' => 'background-color: {{VALUE}}',
     296                ],
     297            ]
     298        );
     299       
     300       
    287301        $this->add_group_control(
    288302            Group_Control_Border::get_type(),
     
    304318            ]
    305319        );
     320       
     321        $this->add_control(
     322           'inner_border_hover_color',
     323            [
     324                'label' => __( 'Inner Border Hover Color', 'definitive-addons-for-elementor' ),
     325                'type' => Controls_Manager::COLOR,
     326                'selectors' => [
     327                    '{{WRAPPER}}  .category_repeaters:hover' => 'border-color: {{VALUE}}',
     328                ],
     329            ]
     330        );
     331       
     332        $this->add_control(
     333            'inner_rotate',
     334            [
     335                'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ),
     336                'type' => Controls_Manager::SLIDER,
     337                'default' => [
     338                    'size' => 0,
     339                    'unit' => 'deg',
     340                ],
     341                'selectors' => [
     342                    '{{WRAPPER}} .category_repeaters' => 'transform: rotate({{SIZE}}{{UNIT}});',
     343                ],
     344            ]
     345        );
     346       
     347        $this->add_control(
     348            'inner_hvr_animation',
     349            [
     350                'label' => __( 'Inner Hover Animation', 'definitive-addons-for-elementor' ),
     351                'type' => Controls_Manager::HOVER_ANIMATION,
     352               
     353               
     354            ]
     355        );
     356       
    306357        $this->end_controls_section();
    307358       
     
    338389            ]
    339390        );
     391        $this->add_control(
     392           'container_bg_hover_color',
     393            [
     394                'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ),
     395                'type' => Controls_Manager::COLOR,
     396                'selectors' => [
     397                    '{{WRAPPER}}  .category_list:hover' => 'background-color: {{VALUE}}',
     398                ],
     399            ]
     400        );
    340401        $this->add_group_control(
    341402            Group_Control_Border::get_type(),
     
    357418            ]
    358419        );
     420        $this->add_control(
     421           'container_border_hover_color',
     422            [
     423                'label' => __( 'Container Border Hover Color', 'definitive-addons-for-elementor' ),
     424                'type' => Controls_Manager::COLOR,
     425                'selectors' => [
     426                    '{{WRAPPER}}  .category_list:hover' => 'border-color: {{VALUE}}',
     427                ],
     428            ]
     429        );
     430        $this->add_group_control(
     431            Group_Control_Box_Shadow::get_type(),
     432            [
     433                'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ),
     434                'name'     => 'cat_list_shadow',
     435
     436                'selector' => '{{WRAPPER}} .category_list',
     437            ]
     438        );
     439       
     440        $this->add_group_control(
     441            Group_Control_Box_Shadow::get_type(),
     442            [
     443                'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ),
     444                'name'     => 'cat_hvr_list_shadow',
     445
     446                'selector' => '{{WRAPPER}} .category_list:hover',
     447            ]
     448        );
    359449        $this->end_controls_section();
    360450       
     
    368458                    <div class="category_list">
    369459           
    370                         <div class="category_repeaters">
     460                        <div class="category_repeaters elementor-animation-<?php echo esc_attr($settings['inner_hvr_animation'] ); ?>">
    371461                       
    372462                        <?php foreach ( $settings['cat_repeaters'] as $cat_icon ) :  ?>
  • definitive-addons-for-elementor/trunk/inc/Elements/Counter.php

    r2675151 r2686404  
    88namespace Definitive_Addons_Elementor\Elements;
    99use Elementor\Group_Control_Background;
     10use Elementor\Group_Control_Box_Shadow;
     11use Elementor\Group_Control_Text_Shadow;
     12use Elementor\Group_Control_Text_Stroke;
    1013use Elementor\Repeater;
    1114use Elementor\Controls_Manager;
     
    107110       
    108111        $this->add_control(
     112            'counter_val_position',
     113            [
     114                'label' =>__( 'Counter Value Position', 'definitive-addons-for-elementor' ),
     115                'type' => Controls_Manager::SELECT2,
     116                'label_block' => true,
     117                'options' => [
     118                    'inline'  =>__( 'Inline', 'definitive-addons-for-elementor' ),
     119                    'block'  =>__( 'Block', 'definitive-addons-for-elementor' )
     120                    ],
     121                'default' => 'inline',
     122               
     123            ]
     124        );
     125
     126       
     127        $this->add_control(
    109128            'counter_alignment',
    110129            [
     
    116135                    'left' => [
    117136                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    118                         'icon' => 'fa fa-align-left',
     137                        'icon' => 'eicon-text-align-left',
    119138                    ],
    120139                    'center' => [
    121140                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    122                         'icon' => 'fa fa-align-center',
     141                        'icon' => 'eicon-text-align-center',
    123142                    ],
    124143                    'right' => [
    125144                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    126                         'icon' => 'fa fa-align-right',
     145                        'icon' => 'eicon-text-align-right',
    127146                    ],
    128147                ],
     
    136155   
    137156        //
    138        
    139         $this->start_controls_section(
    140             'counter_section_style_entry',
    141             [
    142                 'label' => __( 'Counter Item Style', 'definitive-addons-for-elementor' ),
    143                 'tab'   => Controls_Manager::TAB_STYLE,
    144             ]
    145         );
    146         $this->add_control(
    147             'counter_bg_shadow_style',
    148             [
    149                 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ),
    150                 'type' => Controls_Manager::SELECT2,
    151                 'label_block' => true,
    152                 'options' => array(
    153                     'none'  =>__( 'None', 'definitive-addons-for-elementor' ),
    154                     'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ),
    155                     'style2'  =>__( 'Style2', 'definitive-addons-for-elementor' ),
    156                     'style3'  =>__( 'Style3', 'definitive-addons-for-elementor' )),
    157                     'default' =>'style3',
    158                
    159             ]
    160         );
    161          $this->end_controls_section();
    162        
     157
    163158         $this->start_controls_section(
    164159            'counter_section_style_icon',
     
    260255            'icon_hover_color',
    261256            [
    262                 'label' => __( 'Icon Hover Color', 'definitive-addons-for-elementor' ),
     257                'label' => __('Icon Hover Color', 'definitive-addons-for-elementor' ),
    263258                'type' => Controls_Manager::COLOR,
    264259                'selectors' => [
     
    323318       
    324319        $this->start_controls_section(
    325            '_section_style_value',
     320           'section_style_value',
    326321            [
    327322                'label' => __( 'Counter Value', 'definitive-addons-for-elementor' ),
     
    330325        );
    331326       
    332 
     327       
    333328        $this->add_control(
    334329            'counter_val_color',
     
    351346        );
    352347       
     348        $this->add_group_control(
     349            Group_Control_Text_Shadow::get_type(),
     350            [
     351               
     352                'name'     => 'counter_val_shadow',
     353
     354                'selector' => '{{WRAPPER}} .counter-val',
     355            ]
     356        );
     357       
     358       
     359        $this->add_group_control(
     360            Group_Control_Text_Stroke::get_type(),
     361            [   
     362               
     363                'name' => 'counter_val_stroke',
     364                'selector' => '{{WRAPPER}} .counter-val',
     365            ]
     366        );
     367       
    353368        $this->add_responsive_control(
    354369            'counter_val_spacing',
     
    368383       
    369384         $this->start_controls_section(
    370            '_section_style_title',
     385           'section_style_title',
    371386            [
    372387                'label' => __( 'Counter Text', 'definitive-addons-for-elementor' ),
     
    385400            ]
    386401        );
     402       
     403       
     404        $this->add_control(
     405           'text_hvr_color',
     406            [
     407                'label' => __( 'Counter Text Hover Color', 'definitive-addons-for-elementor' ),
     408                'type' => Controls_Manager::COLOR,
     409                'selectors' => [
     410                    '{{WRAPPER}} .counter-text:hover' => 'color: {{VALUE}}',
     411                ],
     412            ]
     413        );
     414       
     415            $this->add_group_control(
     416            Group_Control_Text_Shadow::get_type(),
     417            [
     418               
     419                'name'     => 'counter_text_shadow',
     420
     421                'selector' => '{{WRAPPER}} .counter-text',
     422            ]
     423        );
     424       
     425       
     426        $this->add_group_control(
     427            Group_Control_Text_Stroke::get_type(),
     428            [   
     429               
     430                'name' => 'counter_text_stroke',
     431                'selector' => '{{WRAPPER}} .counter-text',
     432            ]
     433        );
    387434
    388435        $this->add_responsive_control(
     
    409456       
    410457        $this->start_controls_section(
    411            '_section_style_content',
     458           'section_style_content',
    412459            [
    413460                'label' => __( 'Counter Content', 'definitive-addons-for-elementor' ),
     
    439486        );
    440487       
     488        $this->add_control(
     489           'content_bg_hvr_color',
     490            [
     491                'label' => __( 'Counter Background Hover Color', 'definitive-addons-for-elementor' ),
     492                'type' => Controls_Manager::COLOR,
     493                'selectors' => [
     494                    '{{WRAPPER}} .counter-container:hover' => 'background-color: {{VALUE}}',
     495                ],
     496            ]
     497        );
     498       
    441499               
    442500        $this->add_group_control(
     
    459517            ]
    460518        );
     519       
     520        $this->add_control(
     521           'content_border_hvr_color',
     522            [
     523                'label' => __( 'Counter Border Hover Color', 'definitive-addons-for-elementor' ),
     524                'type' => Controls_Manager::COLOR,
     525                'selectors' => [
     526                    '{{WRAPPER}} .counter-container:hover' => 'border-color: {{VALUE}}',
     527                ],
     528            ]
     529        );
     530       
     531        $this->add_control(
     532            'container_rotate',
     533            [
     534                'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ),
     535                'type' => Controls_Manager::SLIDER,
     536                'default' => [
     537                    'size' => 0,
     538                    'unit' => 'deg',
     539                ],
     540                'selectors' => [
     541                    '{{WRAPPER}} .counter-container' => 'transform: rotate({{SIZE}}{{UNIT}});',
     542                ],
     543            ]
     544        );
     545       
     546        $this->add_group_control(
     547            Group_Control_Box_Shadow::get_type(),
     548            [
     549                'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ),
     550                'name'     => 'container_shadow',
     551
     552                'selector' => '{{WRAPPER}} .counter-container',
     553            ]
     554        );
     555       
     556        $this->add_group_control(
     557            Group_Control_Box_Shadow::get_type(),
     558            [
     559                'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ),
     560                'name'     => 'container_hvr_shadow',
     561
     562                'selector' => '{{WRAPPER}} .counter-container:hover',
     563            ]
     564        );
     565       
    461566        $this->end_controls_section();
    462567       
     
    468573    protected function render() {
    469574        $settings = $this->get_settings_for_display();
    470        
    471         $icon_styles ='';
    472        
     575
    473576        $counter_alignment = $this->get_settings_for_display( 'counter_alignment' );
    474         $shadow_style = $this->get_settings_for_display('counter_bg_shadow_style');
    475         $container_styles = 'text-align:'.$counter_alignment.';';
     577
    476578        $counter_icon = $settings['counter_icon']['value'];
    477        
    478         $icon_styles .="text-align:center;display:inline-block;";
     579
    479580        $id = uniqid();
    480581        ?>
    481582
    482         <div class="counter-container <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles) ?>">
     583        <div class="counter-container style3 <?php echo esc_attr($counter_alignment); ?>">
    483584        <?php if ($counter_icon){ ?>
    484             <div class="icon-container" style="<?php echo esc_attr($icon_styles) ?>">
     585            <div class="icon-container">
    485586       
    486587                <i class="<?php echo esc_attr($counter_icon); ?> icon"> </i>
     
    491592        <div class="counter-content">
    492593            <span id="<?php echo esc_attr($id) ?>" class="counter-val" data-startval="<?php echo esc_attr($settings['counter_start_val']) ?>" data-endval="<?php echo esc_attr($settings['counter_end_val']) ?>"></span>
    493             <span class="counter-text">
     594            <span class="counter-text <?php echo esc_attr($settings['counter_val_position']); ?>">
    494595     
    495596            <?php echo esc_html($settings['counter_text']); ?>
  • definitive-addons-for-elementor/trunk/inc/Elements/Filterable_Portfolio.php

    r2675151 r2686404  
    194194                    'left' => [
    195195                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    196                         'icon' => 'fa fa-align-left',
     196                        'icon' => 'eicon-h-align-left',
    197197                    ],
    198198                    'center' => [
    199199                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    200                         'icon' => 'fa fa-align-center',
     200                        'icon' => 'eicon-h-align-center',
    201201                    ],
    202202                    'right' => [
    203203                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    204                         'icon' => 'fa fa-align-right',
     204                        'icon' => 'eicon-h-align-right',
    205205                    ],
    206206                ],
     
    278278                    'left' => [
    279279                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    280                         'icon' => 'fa fa-align-left',
     280                        'icon' => 'eicon-h-align-left',
    281281                    ],
    282282                    'center' => [
    283283                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    284                         'icon' => 'fa fa-align-center',
     284                        'icon' => 'eicon-h-align-center',
    285285                    ],
    286286                    'right' => [
    287287                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    288                         'icon' => 'fa fa-align-right',
     288                        'icon' => 'eicon-h-align-right',
    289289                    ],
    290290                ],
     
    618618                'options' => [
    619619                   
    620                     'leftp' => [
     620                    'left' => [
    621621                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    622                         'icon' => 'fa fa-align-left',
     622                        'icon' => 'eicon-text-align-left',
    623623                    ],
    624                     'centerp' => [
     624                    'center' => [
    625625                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    626                         'icon' => 'fa fa-align-center',
     626                        'icon' => 'eicon-text-align-center',
    627627                    ],
    628                     'rightp' => [
     628                    'right' => [
    629629                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    630                         'icon' => 'fa fa-align-right',
     630                        'icon' => 'eicon-text-align-right',
    631631                    ],
    632                     'justifyp' => [
     632                    'justify' => [
    633633                        'title' =>__( 'Justify', 'definitive-addons-for-elementor' ),
    634                         'icon' => 'fa fa-align-justify',
     634                        'icon' => 'eicon-text-align-justify',
    635635                    ],
    636636                ],
     
    874874       
    875875        <?php if ( 'yes' === $enable_post_title ) : ?>
    876         <h4 class="portfolio-title-down"><a href="<?php echo the_permalink(); ?>"  title="<?php the_title_attribute();?>">
     876        <h4 class="portfolio-title-down"><a href="<?php the_permalink(); ?>"  title="<?php the_title_attribute();?>">
    877877                    <?php the_title(); ?></a>
    878878        </h4>
  • definitive-addons-for-elementor/trunk/inc/Elements/Icon_Box.php

    r2675151 r2686404  
    66
    77namespace Definitive_Addons_Elementor\Elements;
     8
     9use Elementor\Controls_Manager;
     10use Elementor\Group_Control_Box_Shadow;
     11use Elementor\Group_Control_Typography;
     12use Elementor\Group_Control_Text_Shadow;
     13use Elementor\Group_Control_Text_Stroke;
     14use Elementor\Icons_Manager;
     15
     16use Elementor\Group_Control_Border;
    817use Elementor\Group_Control_Background;
    9 use Elementor\Controls_Manager;
    10 use Elementor\Group_Control_Border;
    1118use Elementor\Group_Control_Image_Size;
    12 use Elementor\Group_Control_Typography;
    1319use Elementor\Utils;
    1420use \Elementor\Widget_Base;
     
    8389                'separator' => 'before',
    8490                'type' => Controls_Manager::URL,
    85                 'placeholder' => 'https://softfirm.net/',
     91                'placeholder' => __('https://softfirm.net/', 'definitive-addons-for-elementor' ),
    8692                'dynamic' => [
    8793                    'active' => true,
     
    104110            [
    105111                'label' => __( 'Title HTML Tag', 'definitive-addons-for-elementor' ),
    106                 'type' => Controls_Manager::CHOOSE,
     112                'type' => Controls_Manager::SELECT,
    107113               
    108114                'options' => [
    109                     'h1'  => [
    110                         'title' => __( 'H1', 'definitive-addons-for-elementor' ),
    111                         'icon' => 'eicon-editor-h1'
    112                     ],
    113                     'h2'  => [
    114                         'title' => __( 'H2', 'definitive-addons-for-elementor' ),
    115                         'icon' => 'eicon-editor-h2'
    116                     ],
    117                     'h3'  => [
    118                         'title' => __( 'H3', 'definitive-addons-for-elementor' ),
    119                         'icon' => 'eicon-editor-h3'
    120                     ],
    121                     'h4'  => [
    122                         'title' => __( 'H4', 'definitive-addons-for-elementor' ),
    123                         'icon' => 'eicon-editor-h4'
    124                     ],
    125                     'h5'  => [
    126                         'title' => __( 'H5', 'definitive-addons-for-elementor' ),
    127                         'icon' => 'eicon-editor-h5'
    128                     ],
    129                     'h6'  => [
    130                         'title' => __( 'H6', 'definitive-addons-for-elementor' ),
    131                         'icon' => 'eicon-editor-h6'
    132                     ]
    133                 ],
     115                    'h1' => 'H1',
     116                    'h2' => 'H2',
     117                    'h3' => 'H3',
     118                    'h4' => 'H4',
     119                    'h5' => 'H5',
     120                    'h6' => 'H6',
     121                    'div' => 'div',
     122                    'span' => 'span',
     123                    'p' => 'p',
     124                ],
    134125                'default' => 'h4',
    135126                'toggle' => false,
     
    149140       
    150141       
    151        
     142        $this->add_control(
     143            'enable_desc_link',
     144            [
     145                'label'          => __('Enable Link on Text?', 'definitive-addons-for-elementor'),
     146                'type'           => Controls_Manager::SWITCHER,
     147                'separator'      => 'before',
     148                'label_on'       => __('Yes', 'definitive-addons-for-elementor'),
     149                'label_off'      => __('No', 'definitive-addons-for-elementor'),
     150                'return_value'   => 'yes',
     151                'default' => 'no',
     152               
     153            ]
     154        );
    152155
    153156        $this->end_controls_section();
     
    156159
    157160    // style
     161    /*
     162    * Icon box container style
     163    */
    158164   
    159165    $this->start_controls_section(
     
    175181                    'left' => [
    176182                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    177                         'icon' => 'fa fa-align-left',
     183                        'icon' => 'eicon-text-align-left',
    178184                    ],
    179185                    'center' => [
    180186                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    181                         'icon' => 'fa fa-align-center',
     187                        'icon' => 'eicon-text-align-center',
    182188                    ],
    183189                    'right' => [
    184190                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    185                         'icon' => 'fa fa-align-right',
     191                        'icon' => 'eicon-text-align-right',
    186192                    ],
    187193                ],
     
    190196            ]
    191197        );
    192     $this->add_control(
    193             'icon_box_bg_shadow_style',
    194             [
    195                 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ),
    196                 'type' => Controls_Manager::SELECT2,
    197                 'label_block' => true,
    198                 'options' => array(
    199                     'none'  =>__( 'None', 'definitive-addons-for-elementor' ),
    200                     'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ),
    201                     'style2'  =>__( 'Style2', 'definitive-addons-for-elementor' ),
    202                     'style3'  =>__( 'Style3', 'definitive-addons-for-elementor' )),
    203                 'default' => 'style3',
    204                
    205             ]
    206         );
     198       
     199        $this->add_control(
     200            'dafe_icon_box_bg_color',
     201            [
     202                'label' => __('Background Color', 'definitive-addons-for-elementor'),
     203                'type'  => Controls_Manager::COLOR,
     204                'default' => '#eeeeee',
     205                'selectors'      => [
     206               
     207                '{{WRAPPER}} .dafe-icon-box-entry' => 'background-color: {{VALUE}};',
     208
     209                ],
     210               
     211            ]
     212        );
     213       
     214       
     215       
     216        $this->add_control(
     217            'dafe_icon_box_hvr_bg_color',
     218            [
     219                'label'          => __('Background Hover Color', 'definitive-addons-for-elementor'),
     220                'type'           => Controls_Manager::COLOR,
     221                'selectors'      => [
     222                    '{{WRAPPER}} .dafe-icon-box-entry:hover' => 'background-color: {{VALUE}};',
     223                ],
     224               
     225            ]
     226        );
     227       
     228        $this->add_group_control(
     229            Group_Control_Border::get_type(),
     230            [
     231                'name' => 'dafe_icon_box_container_border',
     232                'selector' => '{{WRAPPER}} .dafe-icon-box-entry',
     233            ]
     234        );
     235
     236        $this->add_responsive_control(
     237          'dafe_icon_box_container_border_radius',
     238            [
     239                'label' => __( 'Container Border Radius', 'definitive-addons-for-elementor' ),
     240                'type' => Controls_Manager::DIMENSIONS,
     241                'size_units' => [ 'px', '%' ],
     242                'selectors' => [
     243                    '{{WRAPPER}} .dafe-icon-box-entry' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
     244                ],
     245            ]
     246        );
     247
     248       
     249
     250        $this->add_control(
     251            'dafe_icon_box_hover_border_color',
     252            [
     253                'label'     => __('Border Hover Color', 'definitive-addons-for-elementor'),
     254                'type'      => Controls_Manager::COLOR,
     255                'selectors' => [
     256                    '{{WRAPPER}} .dafe-icon-box-entry:hover' => 'border-color: {{VALUE}};',
     257                ]
     258            ]
     259        );
     260
     261
     262        $this->add_responsive_control(
     263            'content_padding',
     264            [
     265                'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ),
     266                'type' => Controls_Manager::DIMENSIONS,
     267                'size_units' => [ 'px', 'em', '%' ],
     268                'default'=>['top' =>'10','right' =>'10','bottom' =>'10','left' =>'10'],
     269
     270                'selectors' => [
     271                    '{{WRAPPER}} .dafe-icon-box-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     272                ],
     273            ]
     274        );
     275       
     276        $this->add_group_control(
     277            Group_Control_Box_Shadow::get_type(),
     278            [
     279                'label' => __( 'Container Shadow', 'definitive-addons-for-elementor' ),
     280                'name'     => 'dafe_icon_box_shadow',
     281
     282                'selector' => '{{WRAPPER}} .dafe-icon-box-entry',
     283            ]
     284        );
     285       
     286        $this->add_group_control(
     287            Group_Control_Box_Shadow::get_type(),
     288            [
     289                'label' => __( 'Container Hover Shadow', 'definitive-addons-for-elementor' ),
     290                'name'     => 'dafe_icon_box_hvr_shadow',
     291
     292                'selector' => '{{WRAPPER}} .dafe-icon-box-entry:hover',
     293            ]
     294        );
     295       
     296
     297
     298        $this->add_control(
     299            'dafe_icon_box_hvr_animation',
     300            [
     301                'label' => __( 'Icon Hover Animation', 'definitive-addons-for-elementor' ),
     302                'type' => Controls_Manager::HOVER_ANIMATION,
     303               
     304               
     305            ]
     306        );
     307       
     308       
    207309         $this->end_controls_section();
    208310         
     311         /*
     312            * Icon style
     313        */
     314       
    209315        $this->start_controls_section(
    210316            'icon_box_section_style_icon',
     
    231337                ],
    232338                'selectors' => [
    233                     '{{WRAPPER}} .icon-container' => 'font-size: {{SIZE}}{{UNIT}};',
     339                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'font-size: {{SIZE}}{{UNIT}};',
    234340                ],
    235341            ]
     
    251357                ],
    252358                'selectors' => [
    253                     '{{WRAPPER}} .icon-container' => 'height: {{SIZE}}{{UNIT}};',
    254                     '{{WRAPPER}} .icon-container .icon' => 'line-height: {{SIZE}}{{UNIT}};',
     359                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'height: {{SIZE}}{{UNIT}};',
     360                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'line-height: {{SIZE}}{{UNIT}};',
    255361                ],
    256362            ]
     
    272378                ],
    273379                'selectors' => [
    274                     '{{WRAPPER}} .icon-container' => 'width: {{SIZE}}{{UNIT}};',
    275                 ],
    276             ]
    277         );
     380                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'width: {{SIZE}}{{UNIT}};',
     381                ],
     382            ]
     383        );
     384       
     385        $this->add_control(
     386            'icon_rotate',
     387            [
     388                'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ),
     389                'type' => Controls_Manager::SLIDER,
     390                'default' => [
     391                    'size' => 0,
     392                    'unit' => 'deg',
     393                ],
     394                'selectors' => [
     395                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'transform: rotate({{SIZE}}{{UNIT}});',
     396                ],
     397            ]
     398        );
    278399       
    279400         $this->add_group_control(
     
    281402            [
    282403                'name' => 'icon_background',
    283                 'selector' => '{{WRAPPER}} .icon-container',
     404                'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container',
    284405                'exclude' => [
    285406                    'image'
     
    295416               
    296417                'selectors' => [
    297                     '{{WRAPPER}} .icon-container .icon' => 'color: {{VALUE}}',
     418                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'color: {{VALUE}}',
    298419                ],
    299420            ]
     
    306427                'type' => Controls_Manager::COLOR,
    307428                'selectors' => [
    308                     '{{WRAPPER}} .icon-container:hover .icon' => 'color: {{VALUE}};',
     429                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container:hover .icon' => 'color: {{VALUE}};',
    309430                ],
    310431            ]
     
    317438                'type' => Controls_Manager::COLOR,
    318439                'selectors' => [
    319                     '{{WRAPPER}} .icon-container:hover' => 'background-color: {{VALUE}};',
     440                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container:hover' => 'background-color: {{VALUE}};',
    320441                ],
    321442            ]
     
    327448            [
    328449                'name' => 'icon_border',
    329                 'selector' => '{{WRAPPER}} .icon-container',
     450                'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container',
    330451            ]
    331452        );
     
    340461                'size_units' => [ 'px', '%' ],
    341462                'selectors' => [
    342                     '{{WRAPPER}} .icon-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
    343                 ],
    344             ]
    345         );
     463                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
     464                ],
     465            ]
     466        );
     467       
     468        $this->add_group_control(
     469            Group_Control_Box_Shadow::get_type(),
     470            [
     471                'name'     => 'dafe_icon_shadow',
     472
     473                'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container',
     474            ]
     475        );
     476       
     477
     478
     479        $this->add_control(
     480            'dafe_icon_hvr_animation',
     481            [
     482                'label' => __( 'Icon Hover Animation', 'definitive-addons-for-elementor' ),
     483                'type' => Controls_Manager::HOVER_ANIMATION,
     484               
     485               
     486            ]
     487        );
    346488       
    347489        $this->add_responsive_control(
     
    352494                'size_units' => ['px'],
    353495                'selectors' => [
    354                     '{{WRAPPER}} .icon-container' => 'margin-bottom: {{SIZE}}{{UNIT}};',
     496                    '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'margin-bottom: {{SIZE}}{{UNIT}};',
    355497                ],
    356498                'default' => [
     
    363505
    364506        $this->end_controls_section();
    365 
     507       
     508       
     509        /*
     510            * Icon box title style
     511        */
    366512       
    367513
    368514        $this->start_controls_section(
    369            '_section_style_title',
     515           'section_style_title',
    370516            [
    371517                'label' => __( 'Icon Box Title', 'definitive-addons-for-elementor' ),
     
    382528                'size_units' => ['px'],
    383529                'selectors' => [
    384                     '{{WRAPPER}} .icon-box-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
     530                    '{{WRAPPER}} .dafe-icon-box-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
    385531                ],
    386532            ]
     
    393539                'type' => Controls_Manager::COLOR,
    394540                'selectors' => [
    395                     '{{WRAPPER}} .icon-box-title' => 'color: {{VALUE}}',
     541                    '{{WRAPPER}} .dafe-icon-box-title' => 'color: {{VALUE}}',
     542                ],
     543            ]
     544        );
     545       
     546        $this->add_control(
     547           'title_hvr_color',
     548            [
     549                'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ),
     550                'type' => Controls_Manager::COLOR,
     551                'selectors' => [
     552                    '{{WRAPPER}} .dafe-icon-box-title:hover' => 'color: {{VALUE}}',
    396553                ],
    397554            ]
     
    402559            [
    403560                'name' => 'title_font',
    404                 'selector' => '{{WRAPPER}} .icon-box-title',
     561                'selector' => '{{WRAPPER}} .dafe-icon-box-title',
    405562               
    406563            ]
    407564        );
    408565       
     566        $this->add_group_control(
     567            Group_Control_Text_Stroke::get_type(),
     568            [
     569                'name' => 'title_stroke',
     570                'selector' => '{{WRAPPER}} .dafe-icon-box-title',
     571            ]
     572        );
     573
     574        $this->add_group_control(
     575            Group_Control_Text_Shadow::get_type(),
     576            [
     577                'name' => 'title_shadow',
     578                'selector' => '{{WRAPPER}} .dafe-icon-box-title',
     579            ]
     580        );
     581       
    409582        $this->end_controls_section();
    410 
     583       
     584        /*
     585            * Icon box description style
     586        */
     587   
    411588        $this->start_controls_section(
    412            '_section_style_subtitle',
     589           'section_style_subtitle',
    413590            [
    414591                'label' => __( 'Icon Box Description', 'definitive-addons-for-elementor' ),
     
    427604                ],
    428605                'selectors' => [
    429                     '{{WRAPPER}} .icon-box-desc' => 'margin-bottom: {{SIZE}}{{UNIT}};',
     606                    '{{WRAPPER}} .dafe-icon-box-desc' => 'margin-bottom: {{SIZE}}{{UNIT}};',
    430607                ],
    431608            ]
     
    440617                'default' => '#54595F',
    441618                'selectors' => [
    442                     '{{WRAPPER}} .icon-box-desc' => 'color: {{VALUE}}',
     619                    '{{WRAPPER}} .dafe-icon-box-desc' => 'color: {{VALUE}}',
    443620                ],
    444621            ]
     
    449626            [
    450627                'name' => 'subtitle_font',
    451                 'selector' => '{{WRAPPER}} .icon-box-desc',
     628                'selector' => '{{WRAPPER}} .dafe-icon-box-desc',
    452629               
    453630            ]
    454631        );
     632       
     633        $this->add_group_control(
     634            Group_Control_Text_Stroke::get_type(),
     635            [
     636                'name' => 'subtitle_stroke',
     637                'selector' => '{{WRAPPER}} .dafe-icon-box-desc',
     638            ]
     639        );
     640
     641        $this->add_group_control(
     642            Group_Control_Text_Shadow::get_type(),
     643            [
     644                'name' => 'subtitle_shadow',
     645                'selector' => '{{WRAPPER}} .dafe-icon-box-desc',
     646            ]
     647        );
    455648   
    456649        $this->end_controls_section();
    457         $this->start_controls_section(
    458            '_section_style_content',
    459             [
    460                 'label' => __( 'Icon Box Content', 'definitive-addons-for-elementor' ),
    461                 'tab'   => Controls_Manager::TAB_STYLE,
    462             ]
    463         );
    464 
    465         $this->add_responsive_control(
    466             'content_padding',
    467             [
    468                 'label' => __( 'Content Padding', 'definitive-addons-for-elementor' ),
    469                 'type' => Controls_Manager::DIMENSIONS,
    470                 'size_units' => [ 'px', 'em', '%' ],
    471                 'default'=>['top' =>'10','right' =>'10','bottom' =>'10','left' =>'10'],
    472 
    473                 'selectors' => [
    474                     '{{WRAPPER}} .icon-box-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    475                 ],
    476             ]
    477         );
    478 
    479         $this->add_group_control(
    480             Group_Control_Background::get_type(),
    481             [
    482                 'name' => 'content_background',
    483                 'selector' => '{{WRAPPER}} .icon-box-entry',
    484                 'exclude' => [
    485                     'image'
    486                 ]
    487             ]
    488         );
    489        
    490         $this->add_group_control(
    491             Group_Control_Border::get_type(),
    492             [
    493                 'name' => 'content_border',
    494                 'selector' => '{{WRAPPER}} .icon-box-entry',
    495             ]
    496         );
    497 
    498         $this->add_responsive_control(
    499           'iconbox_border_radius',
    500             [
    501                 'label' =>__( 'Content Border Radius', 'definitive-addons-for-elementor' ),
    502                 'type' => Controls_Manager::DIMENSIONS,
    503                 'size_units' => [ 'px', '%' ],
    504                 'selectors' => [
    505                     '{{WRAPPER}} .icon-box-entry' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
    506                 ],
    507             ]
    508         );
    509 
    510         $this->end_controls_section();
     650       
     651       
    511652    }
    512653
    513654    protected function render() {
     655       
    514656        $settings = $this->get_settings_for_display();
    515657        $link = $this->get_settings_for_display( 'link' );
    516         $icon_height = $this->get_settings_for_display( 'icon_height' );
     658       
    517659        $title_tag = $this->get_settings_for_display( 'title_tag' );
    518         $shadow_style = $this->get_settings_for_display('icon_box_bg_shadow_style');
    519        
    520         $icon_box_alignment = $this->get_settings_for_display( 'icon_box_alignment' );
    521         $container_styles = 'text-align:'.$icon_box_alignment.';';
    522         $icon_container_styles = 'text-align:center;display:inline-block;';
     660       
     661   
    523662       
    524663        ?>
    525664       
    526     <div class="icon-box-entry <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles) ?>">
    527             <div class="icon-box-item">
     665    <div class="dafe-icon-box-entry <?php echo esc_attr($settings['icon_box_alignment'] ); ?> elementor-animation-<?php echo esc_attr($settings['dafe_icon_box_hvr_animation'] ); ?>">
     666        <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>">
     667                             
     668            <div class="dafe-icon-box-item">
    528669            <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>">
    529                 <div class="icon-container" style="<?php echo esc_attr($icon_container_styles); ?>" >
     670                <div class="dafe-icon-container elementor-animation-<?php echo esc_attr($settings['dafe_icon_hvr_animation'] ); ?>">
    530671                       
    531672                      <i class="<?php echo esc_attr($settings['new_icon_id']['value']); ?> icon"> </i>
     
    534675            </a>
    535676
    536                             <div class="icon-box-content">
     677                            <div class="dafe-icon-box-content">
    537678                                <?php if ( $settings['title'] ) : ?>
    538                                     <<?php echo esc_attr($title_tag); ?> class="icon-box-title"><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr($title_tag); ?>>
    539                                 <?php endif; ?>
     679                                <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>">
     680                                   
     681                                    <<?php echo esc_attr($title_tag); ?> class="dafe-icon-box-title"><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr($title_tag); ?>>
     682                                </a>
     683                                <?php endif; ?>
     684                                <?php if ($settings['enable_desc_link'] == 'yes') { ?> 
    540685                                <?php if ( $settings['subtitle'] ) : ?>
    541                                     <p class="icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p>
    542                                 <?php endif; ?>
     686                                <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>">
     687                                   
     688                                    <p class="dafe-icon-box-desc <?php echo esc_attr($settings['icon_box_alignment'] ); ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p>
     689                                </a>
     690                                <?php endif; ?>
     691                                <?php } else { ?>
     692                                <?php if ( $settings['subtitle'] ) : ?>
     693                               
     694                                    <p class="dafe-icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p>
     695                               
     696                                <?php endif; ?>
     697                                <?php } ?>
    543698                            </div>
    544699                       
    545700            </div>
     701        </a>   
    546702     </div>
    547703
  • definitive-addons-for-elementor/trunk/inc/Elements/Promo-box.php

    r2675151 r2686404  
    99use Elementor\Group_Control_Background;
    1010use Elementor\Controls_Manager;
     11use Elementor\Group_Control_Box_Shadow;
     12use Elementor\Group_Control_Text_Shadow;
    1113use Elementor\Group_Control_Border;
    1214use Elementor\Group_Control_Image_Size;
     
    2729        return __( 'DA: Promo Box', 'definitive-addons-for-elementor' );
    2830    }
    29         /**
     31     /**
    3032     * Get widget NAME.
    3133   
     
    3537        return 'dafe_promo_box';
    3638    }
    37         /**
     39    /**
    3840     * Get widget icon.
    3941   
     
    5658   
    5759        $this->start_controls_section(
    58             '_section_promo_box',
     60            'section_promo_box',
    5961            [
    6062                'label' =>__( 'Promo Box', 'definitive-addons-for-elementor' ),
     
    8082                'separator' => 'before',
    8183                'type' => Controls_Manager::URL,
    82                 'placeholder' => 'https://softfirm.net/',
     84                'placeholder' => __( 'https://softfirm.net/', 'definitive-addons-for-elementor' ),
    8385                'dynamic' => [
    8486                    'active' => true,
     
    128130    // style
    129131        $this->start_controls_section(
    130             'overlay_section_border_style',
    131             [
    132                 'label' => __( 'Overlay Border Style', 'definitive-addons-for-elementor' ),
     132            'overlay_section_style',
     133            [
     134                'label' => __( 'Overlay Style', 'definitive-addons-for-elementor' ),
    133135                'tab'   => Controls_Manager::TAB_STYLE,
    134136            ]
    135137        );
    136138       
    137        
    138 
    139         $this->add_group_control(
    140             Group_Control_Border::get_type(),
    141             [
    142                 'name' => 'overlay_border',
    143                 'selector' => '{{WRAPPER}} .promo_box_border_style',
    144             ]
    145         );
    146 
    147         $this->add_responsive_control(
    148           'overlay_border_radius',
    149             [
    150                 'label' => __( 'Overlay Border Radius', 'definitive-addons-for-elementor' ),
    151                 'type' => Controls_Manager::DIMENSIONS,
    152                 'size_units' => [ 'px', '%' ],
    153                 'selectors' => [
    154                     '{{WRAPPER}} .promo_box_border_style' => 'border-radius: {{TOP}}{{UNIT}}{{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
    155                 ],
    156             ]
    157         );
    158        
    159        
    160    
    161         $this->end_controls_section();
    162 
    163         $this->start_controls_section(
    164            'overlay_section_text_style',
    165             [
    166                 'label' => __( 'Overlay Text & Background', 'definitive-addons-for-elementor' ),
    167                 'tab'   => Controls_Manager::TAB_STYLE,
    168             ]
    169         );
    170 
    171         $this->add_responsive_control(
    172             'content_padding',
    173             [
    174                 'label' => __( 'Content Padding', 'definitive-addons-for-elementor' ),
    175                 'type' => Controls_Manager::DIMENSIONS,
    176                 'size_units' => [ 'px', 'em', '%' ],
    177                 'selectors' => [
    178                     '{{WRAPPER}} .promo_box_border_style' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    179                 ],
    180             ]
    181         );
    182        
    183 
    184         $this->add_group_control(
     139        $this->add_control(
     140            'overlay_design',
     141            [
     142                'label' =>__( 'Overlay Design', 'definitive-addons-for-elementor' ),
     143                'type' => Controls_Manager::SELECT2,
     144                'label_block' => true,
     145                'options' => [
     146
     147                    'default'  =>__( 'Default', 'definitive-addons-for-elementor' ),
     148                    'corner'  =>__( 'Corner', 'definitive-addons-for-elementor' )
     149                    ],
     150                'default' => 'default',
     151               
     152            ]
     153        );
     154       
     155        $this->add_group_control(
    185156            Group_Control_Background::get_type(),
    186157            [
    187                 'name' => 'content_background',
     158                'name' => 'overlay_background',
    188159                'selector' => '{{WRAPPER}} .promo_box_border_style',
    189160                'exclude' => [
     
    192163            ]
    193164        );
    194 
    195        
     165       
     166        $this->add_control(
     167           'overlay_bg_hvr_color',
     168            [
     169                'label' => __( 'Overlay Background Hover Color', 'definitive-addons-for-elementor' ),
     170                'type' => Controls_Manager::COLOR,
     171                'selectors' => [
     172                    '{{WRAPPER}} .promo_box_border_style:hover' => 'background-color: {{VALUE}}',
     173                ],
     174            ]
     175        );
     176       
     177        $this->add_responsive_control(
     178            'overlay_padding',
     179            [
     180                'label' => __( 'Overlay Padding', 'definitive-addons-for-elementor' ),
     181                'type' => Controls_Manager::DIMENSIONS,
     182                'size_units' => [ 'px', 'em', '%' ],
     183                'selectors' => [
     184                    '{{WRAPPER}} .promo_box_border_style' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     185                ],
     186            ]
     187        );
     188
     189        $this->add_group_control(
     190            Group_Control_Border::get_type(),
     191            [
     192                'name' => 'overlay_border',
     193                'selector' => '{{WRAPPER}} .promo_box_border_style',
     194            ]
     195        );
     196
     197       
     198        $this->add_group_control(
     199            Group_Control_Box_Shadow::get_type(),
     200            [
     201                'label' => __( 'Overlay Box Shadow', 'definitive-addons-for-elementor' ),
     202                'name'     => 'ovl_shadow',
     203
     204                'selector' => '{{WRAPPER}} .promo_box_border_style',
     205            ]
     206        );
     207
     208        $this->end_controls_section();
     209
     210        $this->start_controls_section(
     211           'overlay_section_text_style',
     212            [
     213                'label' => __( 'Overlay Text & Background', 'definitive-addons-for-elementor' ),
     214                'tab'   => Controls_Manager::TAB_STYLE,
     215            ]
     216        );
     217
     218        $this->add_control(
     219           'title_color',
     220            [
     221                'label' => __( 'Title Color', 'definitive-addons-for-elementor' ),
     222                'type' => Controls_Manager::COLOR,
     223                'selectors' => [
     224                    '{{WRAPPER}} .promo-box-title' => 'color: {{VALUE}}',
     225                ],
     226            ]
     227        );
    196228
    197229        $this->add_control(
    198            'title_color',
    199             [
    200                 'label' => __( 'Title Color', 'definitive-addons-for-elementor' ),
    201                 'type' => Controls_Manager::COLOR,
    202                 'selectors' => [
    203                     '{{WRAPPER}} .promo-box-title' => 'color: {{VALUE}}',
     230           'title_hvr_color',
     231            [
     232                'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ),
     233                'type' => Controls_Manager::COLOR,
     234                'selectors' => [
     235                    '{{WRAPPER}} .promo-box-title:hover' => 'color: {{VALUE}}',
    204236                ],
    205237            ]
     
    214246            ]
    215247        );
     248       
     249        $this->add_group_control(
     250            Group_Control_Text_Shadow::get_type(),
     251            [
     252               
     253                'name'     => 'title_shadow',
     254
     255                'selector' => '{{WRAPPER}} .promo-box-title',
     256            ]
     257        );
    216258
    217259        $this->end_controls_section();
     260       
     261         $this->start_controls_section(
     262           'container_style',
     263            [
     264                'label' => __( 'Container Style', 'definitive-addons-for-elementor' ),
     265                'tab'   => Controls_Manager::TAB_STYLE,
     266            ]
     267        );
     268       
     269        $this->add_responsive_control(
     270            'container_padding',
     271            [
     272                'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ),
     273                'type' => Controls_Manager::DIMENSIONS,
     274                'size_units' => [ 'px', 'em', '%' ],
     275                'selectors' => [
     276                    '{{WRAPPER}} .promo-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     277                ],
     278            ]
     279        );
     280       
     281         $this->add_control(
     282           'container_bg_color',
     283            [
     284                'label' => __( 'Container Background Color', 'definitive-addons-for-elementor' ),
     285                'type' => Controls_Manager::COLOR,
     286                'selectors' => [
     287                    '{{WRAPPER}} .promo-box' => 'background-color: {{VALUE}}',
     288                ],
     289            ]
     290        );
     291       
     292         $this->add_control(
     293           'container_bg_hvr_color',
     294            [
     295                'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ),
     296                'type' => Controls_Manager::COLOR,
     297                'selectors' => [
     298                    '{{WRAPPER}} .promo-box:hover' => 'background-color: {{VALUE}}',
     299                ],
     300            ]
     301        );
     302
     303         $this->add_group_control(
     304            Group_Control_Border::get_type(),
     305            [
     306                'name' => 'container_border',
     307                'selector' => '{{WRAPPER}} .promo-box',
     308            ]
     309        );
     310       
     311        $this->add_group_control(
     312            Group_Control_Box_Shadow::get_type(),
     313            [
     314                'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ),
     315                'name'     => 'container_shadow',
     316
     317                'selector' => '{{WRAPPER}} .promo-box',
     318            ]
     319        );
     320       
     321        $this->add_group_control(
     322            Group_Control_Box_Shadow::get_type(),
     323            [
     324                'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ),
     325                'name'     => 'container_hvr_shadow',
     326
     327                'selector' => '{{WRAPPER}} .promo-box:hover',
     328            ]
     329        );
     330       
     331         $this->end_controls_section();
    218332    }
    219333
     
    230344        if ($show_hide_ovl != 'yes'){
    231345            $promo_overlay_styles .= 'display:none;';
     346            $corner_styles = 'display:none;';
     347            $show_hide_ovl = 'no';
     348        }
     349        if ($settings['overlay_design'] == 'default'){
     350           
    232351            $corner_styles = 'display:none;';
    233352            $show_hide_ovl = 'no';
  • definitive-addons-for-elementor/trunk/inc/Elements/Staff_Member.php

    r2675151 r2686404  
    1010use Elementor\Repeater;
    1111use Elementor\Controls_Manager;
     12use Elementor\Group_Control_Box_Shadow;
     13use Elementor\Group_Control_Text_Shadow;
     14use Elementor\Group_Control_Text_Stroke;
    1215use Elementor\Group_Control_Border;
    1316use Elementor\Group_Control_Image_Size;
     
    248251        );
    249252
    250         $this->add_control(
    251             'staff_bg_shadow_style',
    252             [
    253                 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ),
    254                 'type' => Controls_Manager::SELECT2,
    255                 'label_block' => true,
    256                 'options' => array(
    257                     'none'  =>__( 'None', 'definitive-addons-for-elementor' ),
    258                     'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ),
    259                     'style2'  =>__( 'Style2', 'definitive-addons-for-elementor' ),
    260                     'style3'  =>__( 'Style3', 'definitive-addons-for-elementor' )),
    261                 'default' => 'style3',
    262                
    263             ]
    264         );
     253       
    265254         $this->end_controls_section();
    266255       
     
    283272        );
    284273
    285        
     274        $this->add_control(
     275           'img_hvr_border_color',
     276            [
     277                'label' => __( 'Image Border Hover Color', 'definitive-addons-for-elementor' ),
     278                'type' => Controls_Manager::COLOR,
     279                'selectors' => [
     280                    '{{WRAPPER}} .staff-member-name:hover' => 'border-color: {{VALUE}}',
     281                ],
     282            ]
     283        );
    286284
    287285        $this->add_responsive_control(
     
    350348            ]
    351349        );
     350       
     351       
     352        $this->add_control(
     353           'name_hvr_color',
     354            [
     355                'label' => __( 'Name Hover Color', 'definitive-addons-for-elementor' ),
     356                'type' => Controls_Manager::COLOR,
     357                'selectors' => [
     358                    '{{WRAPPER}} .staff-member-name:hover' => 'color: {{VALUE}}',
     359                ],
     360            ]
     361        );
    352362
    353363        $this->add_group_control(
     
    359369            ]
    360370        );
     371       
     372        $this->add_group_control(
     373            Group_Control_Text_Shadow::get_type(),
     374            [
     375               
     376                'name'     => 'staff_name_shadow',
     377
     378                'selector' => '{{WRAPPER}} .staff-member-name',
     379            ]
     380        );
     381       
     382       
     383        $this->add_group_control(
     384            Group_Control_Text_Stroke::get_type(),
     385            [   
     386               
     387                'name' => 'staff_name_stroke',
     388                'selector' => '{{WRAPPER}} .staff-member-name',
     389            ]
     390        );
    361391        $this->end_controls_section();
    362392       
     
    387417            'job_position_color',
    388418            [
    389                 'label' => __( 'Text Color', 'definitive-addons-for-elementor' ),
     419                'label' => __( 'Job Position Color', 'definitive-addons-for-elementor' ),
    390420                'type' => Controls_Manager::COLOR,
    391421                'selectors' => [
    392422                    '{{WRAPPER}} .staff-member-job-position' => 'color: {{VALUE}}',
     423                ],
     424            ]
     425        );
     426         $this->add_control(
     427            'job_position_hvr_color',
     428            [
     429                'label' => __( 'Job Position Hover Color', 'definitive-addons-for-elementor' ),
     430                'type' => Controls_Manager::COLOR,
     431                'selectors' => [
     432                    '{{WRAPPER}} .staff-member-job-position:hover' => 'color: {{VALUE}}',
    393433                ],
    394434            ]
     
    404444        );
    405445       
    406        
     446        $this->add_group_control(
     447            Group_Control_Text_Shadow::get_type(),
     448            [
     449               
     450                'name'     => 'staff_position_shadow',
     451
     452                'selector' => '{{WRAPPER}} .staff-member-job-position',
     453            ]
     454        );
     455       
     456       
     457        $this->add_group_control(
     458            Group_Control_Text_Stroke::get_type(),
     459            [   
     460               
     461                'name' => 'staff_position_stroke',
     462                'selector' => '{{WRAPPER}} .staff-member-job-position',
     463            ]
     464        );
    407465
    408466        $this->end_controls_section();
     
    435493                'type' => Controls_Manager::COLOR,
    436494                'selectors' => [
    437                     '{{WRAPPER}} p.staff-member-text,.site-main {{WRAPPER}} p.staff-member-text' => 'color: {{VALUE}}',
     495                    '{{WRAPPER}} p.staff-member-text' => 'color: {{VALUE}}',
    438496                ],
    439497            ]
     
    444502            [
    445503                'name' => 'text_fonts',
    446                 'selector' => '{{WRAPPER}} .staff-member-name',
     504                'selector' => '{{WRAPPER}} p.staff-member-text',
    447505               
    448506            ]
     
    575633        );
    576634
    577        
    578 
    579635        $this->add_responsive_control(
    580636          'icon_border_radius',
     
    589645        );
    590646       
     647        $this->add_control(
     648           'icon_hover_border_color',
     649            [
     650                'label' => __( 'Icon Border Hover Color', 'definitive-addons-for-elementor' ),
     651                'type' => Controls_Manager::COLOR,
     652                'selectors' => [
     653                    '{{WRAPPER}} .icon-container:hover' => 'border-color: {{VALUE}}',
     654                ],
     655            ]
     656        );
     657       
    591658        $this->add_responsive_control(
    592659            'icon_right_spacing',
     
    616683            ]
    617684        );
    618        
    619        
    620 
     685   
    621686        $this->end_controls_section();
    622687
    623688       
    624689        $this->start_controls_section(
    625            '_section_style_content',
    626             [
    627                 'label' => __( 'Staff Member Content', 'definitive-addons-for-elementor' ),
     690           'section_style_content',
     691            [
     692                'label' => __( 'Staff Member Container', 'definitive-addons-for-elementor' ),
    628693                'tab'   => Controls_Manager::TAB_STYLE,
    629694            ]
     
    633698            'content_padding',
    634699            [
    635                 'label' => __( 'Content Padding', 'definitive-addons-for-elementor' ),
     700                'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ),
    636701                'type' => Controls_Manager::DIMENSIONS,
    637702                'size_units' => [ 'px', 'em', '%' ],
     
    654719        );
    655720       
     721        $this->add_control(
     722           'content_hover_bg_color',
     723            [
     724                'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ),
     725                'type' => Controls_Manager::COLOR,
     726                'selectors' => [
     727                    '{{WRAPPER}} .staff-member:hover' => 'background-color: {{VALUE}}',
     728                ],
     729            ]
     730        );
     731       
     732        $this->add_group_control(
     733            Group_Control_Border::get_type(),
     734            [
     735                'name' => 'content_border',
     736                'selector' => '{{WRAPPER}} .staff-member',
     737            ]
     738        );
     739
     740        $this->add_responsive_control(
     741          'container_border_radius',
     742            [
     743                'label' =>__( 'Container Border Radius', 'definitive-addons-for-elementor' ),
     744                'type' => Controls_Manager::DIMENSIONS,
     745                'size_units' => [ 'px', '%' ],
     746                'selectors' => [
     747                    '{{WRAPPER}} .staff-member' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
     748                ],
     749            ]
     750        );
     751       
     752        $this->add_control(
     753           'content_border_hvr_color',
     754            [
     755                'label' => __( 'Container Border Hover Color', 'definitive-addons-for-elementor' ),
     756                'type' => Controls_Manager::COLOR,
     757                'selectors' => [
     758                    '{{WRAPPER}} .staff-member:hover' => 'border-color: {{VALUE}}',
     759                ],
     760            ]
     761        );
     762       
     763        $this->add_control(
     764            'container_rotate',
     765            [
     766                'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ),
     767                'type' => Controls_Manager::SLIDER,
     768                'default' => [
     769                    'size' => 0,
     770                    'unit' => 'deg',
     771                ],
     772                'selectors' => [
     773                    '{{WRAPPER}} .staff-member' => 'transform: rotate({{SIZE}}{{UNIT}});',
     774                ],
     775            ]
     776        );
     777       
     778        $this->add_group_control(
     779            Group_Control_Box_Shadow::get_type(),
     780            [
     781                'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ),
     782                'name'     => 'container_shadow',
     783
     784                'selector' => '{{WRAPPER}} .staff-member',
     785            ]
     786        );
     787       
     788        $this->add_group_control(
     789            Group_Control_Box_Shadow::get_type(),
     790            [
     791                'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ),
     792                'name'     => 'container_hvr_shadow',
     793
     794                'selector' => '{{WRAPPER}} .staff-member:hover',
     795            ]
     796        );
     797       
    656798        $this->end_controls_section();
    657799       
     
    661803    protected function render( ) {
    662804        $settings = $this->get_settings_for_display();
    663         $shadow_style = $this->get_settings_for_display('staff_bg_shadow_style');
     805       
    664806       
    665807        $staff_member_alignment = $this->get_settings_for_display('staff_member_alignment');
     
    680822
    681823 
    682                     <div class="staff-member <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles); ?>">
     824                    <div class="staff-member style3" style="<?php echo esc_attr($container_styles); ?>">
    683825                        <?php if ( $image ) : ?>
    684826                            <img class="staff-member-img" src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( $settings['staff_name'] ); ?>">
  • definitive-addons-for-elementor/trunk/inc/Elements/heading-with-separator.php

    r2675151 r2686404  
    88namespace Definitive_Addons_Elementor\Elements;
    99use Elementor\Group_Control_Background;
    10 
     10use Elementor\Group_Control_Box_Shadow;
     11use Elementor\Group_Control_Text_Shadow;
     12use Elementor\Group_Control_Text_Stroke;
    1113use Elementor\Controls_Manager;
    1214use Elementor\Group_Control_Border;
     
    112114                    'left' => [
    113115                        'title' =>__( 'Left', 'definitive-addons-for-elementor' ),
    114                         'icon' => 'fa fa-align-left',
     116                        'icon' => 'eicon-text-align-left',
    115117                    ],
    116118                    'center' => [
    117119                        'title' =>__( 'Center', 'definitive-addons-for-elementor' ),
    118                         'icon' => 'fa fa-align-center',
     120                        'icon' => 'eicon-text-align-center',
    119121                    ],
    120122                    'right' => [
    121123                        'title' =>__( 'Right', 'definitive-addons-for-elementor' ),
    122                         'icon' => 'fa fa-align-right',
     124                        'icon' => 'eicon-text-align-right',
    123125                    ],
    124                    
    125126                ],
    126127                'default' => 'center'
     
    134135
    135136        $this->start_controls_section(
    136            '_section_style_title',
     137           'section_style_title',
    137138            [
    138139                'label' => __( 'Heading', 'definitive-addons-for-elementor' ),
     
    166167            ]
    167168        );
    168 
     169       
     170         $this->add_control(
     171           'title_bg_color',
     172            [
     173                'label' => __( 'Title Background Color', 'definitive-addons-for-elementor' ),
     174                'type' => Controls_Manager::COLOR,
     175                'selectors' => [
     176                    '{{WRAPPER}} .font-heading' => 'background-color: {{VALUE}}',
     177                ],
     178            ]
     179        );
     180
     181
     182        $this->add_control(
     183            'title_hover_color',
     184            [
     185                'label' =>__( 'Title Hover Color', 'definitive-addons-for-elementor' ),
     186                'type' => Controls_Manager::COLOR,
     187                'selectors' => [
     188                    '{{WRAPPER}} .font-heading:hover' => 'color: {{VALUE}}',
     189                ],
     190            ]
     191        );
     192       
     193         $this->add_control(
     194           'title_bg_hvr_color',
     195            [
     196                'label' =>__( 'Title Background Hover Color', 'definitive-addons-for-elementor' ),
     197                'type' => Controls_Manager::COLOR,
     198                'selectors' => [
     199                    '{{WRAPPER}} .font-heading:hover' => 'background-color: {{VALUE}}',
     200                ],
     201            ]
     202        );
     203       
    169204        $this->add_group_control(
    170205            Group_Control_Typography::get_type(),
     
    175210            ]
    176211        );
    177 
    178 
    179         $this->add_control(
    180             'title_hover_color',
    181             [
    182                 'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ),
    183                 'type' => Controls_Manager::COLOR,
    184                 'selectors' => [
    185                     '{{WRAPPER}} .font-heading:hover' => 'color: {{VALUE}}',
    186                 ],
    187             ]
    188         );
     212       
     213        $this->add_group_control(
     214            Group_Control_Text_Shadow::get_type(),
     215            [
     216               
     217                'name'     => 'heading_shadow',
     218
     219                'selector' => '{{WRAPPER}} .font-heading',
     220            ]
     221        );
     222       
     223       
     224        $this->add_group_control(
     225            Group_Control_Text_Stroke::get_type(),
     226            [   
     227               
     228                'name' => 'heading_stroke',
     229                'selector' => '{{WRAPPER}} .font-heading',
     230            ]
     231        );
     232       
     233        $this->add_responsive_control(
     234            'title_padding',
     235            [
     236                'label' => __( 'Title Padding', 'definitive-addons-for-elementor' ),
     237                'type' => Controls_Manager::DIMENSIONS,
     238                'size_units' => [ 'px', 'em', '%' ],
     239                'selectors' => [
     240                    '{{WRAPPER}} .font-heading' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     241                ],
     242            ]
     243        );
     244
    189245        $this->end_controls_section();
    190246        //
     
    205261                ],
    206262                'default' =>'#6EC1E4'
     263            ]
     264        );
     265       
     266        $this->add_control(
     267           'separator_hvr_color',
     268            [
     269                'label' => __( 'Separator Hover Color', 'definitive-addons-for-elementor' ),
     270                'type' => Controls_Manager::COLOR,
     271                'selectors' => [
     272                    '{{WRAPPER}} .separator:hover' => 'border-color: {{VALUE}}',
     273                ],
     274                'default' =>'#6EC1D4'
    207275            ]
    208276        );
     
    226294            'separator_height',
    227295            [
    228                 'label' => __( 'Separator Height', 'definitive-addons-for-elementor' ),
     296                'label' =>__( 'Separator Height', 'definitive-addons-for-elementor' ),
    229297                'type' => Controls_Manager::SLIDER,
    230298                'size_units' => ['px'],
     
    238306        );
    239307
    240 
    241        
    242308        $this->add_responsive_control(
    243309            'separator_bottom_spacing',
     
    275341        $style = '';
    276342        $container_styles = 'text-align: '.$heading_alignment.';';
    277        
    278        
    279        
    280343   
    281344        if ($heading_alignment == 'left'){
  • definitive-addons-for-elementor/trunk/inc/Reuses/Reuse.php

    r2681173 r2686404  
    100100        return $post_categories;
    101101    }
    102    
    103    
    104    
    105    
     102
    106103    public static function dafe_posted_on() {
    107104   
     
    151148        if( $list_val = get_posts($args)){
    152149            foreach($list_val as $key){
    153             $form_list[$key->ID] = sanitize_text_field($key->post_title);
     150            $form_list[$key->ID] = esc_html($key->post_title);
    154151            }
    155152            return  $form_list;
    156153        }else{
    157154       
    158         return  $form_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.esc_url( admin_url( 'admin.php?page=wpforms-builder' ) ).'" target="_blank">'
     155        return  $form_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.admin_url( 'admin.php?page=wpforms-builder' ).'" target="_blank">'
    159156        . __( 'Click here', 'definitive-addons-for-elementor' ) .'</a>';
    160157        }
     
    171168        if( $list_val = Ninja_Forms()->form()->get_forms()){
    172169            foreach($list_val as $key){
    173             $form_list[$key->get_id()] = sanitize_text_field($key->get_setting('title'));
     170            $form_list[$key->get_id()] = esc_html($key->get_setting('title'));
    174171            }
    175172            return  $form_list;
     
    190187        if( $list_val = get_posts($args)){
    191188            foreach($list_val as $key){
    192             $cf7_list[$key->ID] = sanitize_text_field($key->post_title);
     189            $cf7_list[$key->ID] = esc_html($key->post_title);
    193190            }
    194191            return  $cf7_list;
    195192        }else{
    196193       
    197         return  $cf7_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.esc_url( admin_url( 'admin.php?page=wpcf7-new' ) ).'" target="_blank">'
     194        return  $cf7_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.admin_url( 'admin.php?page=wpcf7-new' ).'" target="_blank">'
    198195        . __( 'Click here', 'definitive-addons-for-elementor' ) .'</a>';
    199196        }
  • definitive-addons-for-elementor/trunk/languages/definitive-addons-for-elementor.pot

    r2673738 r2686404  
    33msgstr ""
    44"Project-Id-Version: definitive-addons-for-elementor\n"
    5 "POT-Creation-Date: 2022-02-06 18:06+0600\n"
     5"POT-Creation-Date: 2022-03-01 14:26+0600\n"
    66"PO-Revision-Date: 2020-03-12 14:48+0600\n"
    77"Last-Translator: \n"
     
    153153msgstr ""
    154154
    155 #: inc/Elements/Accordion.php:244 inc/Elements/Category_List.php:351
     155#: inc/Elements/Accordion.php:244 inc/Elements/Category_List.php:412
    156156#: inc/Elements/Contact_form_7.php:255
    157 #: inc/Elements/Filterable_Portfolio.php:757 inc/Elements/Ninja_Forms.php:273
    158 #: inc/Elements/Post_Grid.php:560 inc/Elements/Social_Icon.php:339
     157#: inc/Elements/Filterable_Portfolio.php:757 inc/Elements/Icon_Box.php:239
     158#: inc/Elements/Ninja_Forms.php:273 inc/Elements/Post_Grid.php:561
     159#: inc/Elements/Social_Icon.php:339 inc/Elements/Staff_Member.php:743
    159160#: inc/Elements/Tabs.php:201 inc/Elements/WpForm.php:260
    160161msgid "Container Border Radius"
    161162msgstr ""
    162163
    163 #: inc/Elements/Accordion.php:256 inc/Elements/Category_List.php:320
    164 #: inc/Elements/Contact_form_7.php:211 inc/Elements/Ninja_Forms.php:229
    165 #: inc/Elements/Social_Icon.php:351 inc/Elements/Tabs.php:213
    166 #: inc/Elements/Teaser_Box.php:381 inc/Elements/Testimonial.php:482
    167 #: inc/Elements/WpForm.php:216
     164#: inc/Elements/Accordion.php:256 inc/Elements/Category_List.php:371
     165#: inc/Elements/Contact_form_7.php:211 inc/Elements/Icon_Box.php:265
     166#: inc/Elements/Ninja_Forms.php:229 inc/Elements/Promo-box.php:272
     167#: inc/Elements/Social_Icon.php:351 inc/Elements/Staff_Member.php:700
     168#: inc/Elements/Tabs.php:213 inc/Elements/Teaser_Box.php:381
     169#: inc/Elements/Testimonial.php:482 inc/Elements/WpForm.php:216
    168170msgid "Container Padding"
    169171msgstr ""
     
    174176
    175177#: inc/Elements/Accordion.php:279 inc/Elements/CTA.php:405
    176 #: inc/Elements/Contact_form_7.php:290 inc/Elements/Feature_list.php:370
    177 #: inc/Elements/Filterable_Portfolio.php:486 inc/Elements/Flip_Box.php:251
    178 #: inc/Elements/Icon_Box.php:392 inc/Elements/Image_Overlay.php:237
    179 #: inc/Elements/Ninja_Forms.php:308 inc/Elements/Popular_Post.php:88
    180 #: inc/Elements/Post_Carousel.php:232 inc/Elements/Post_Grid.php:299
    181 #: inc/Elements/Products.php:230 inc/Elements/Promo-box.php:200
    182 #: inc/Elements/Slider.php:305 inc/Elements/Tabs.php:245
    183 #: inc/Elements/Teaser_Box.php:262 inc/Elements/WpForm.php:295
    184 #: inc/Elements/heading-with-separator.php:161
     178#: inc/Elements/Category_Box.php:149 inc/Elements/Contact_form_7.php:290
     179#: inc/Elements/Feature_list.php:370 inc/Elements/Filterable_Portfolio.php:486
     180#: inc/Elements/Flip_Box.php:251 inc/Elements/Icon_Box.php:538
     181#: inc/Elements/Image_Overlay.php:237 inc/Elements/Ninja_Forms.php:308
     182#: inc/Elements/Popular_Post.php:88 inc/Elements/Post_Carousel.php:232
     183#: inc/Elements/Post_Grid.php:299 inc/Elements/Products.php:230
     184#: inc/Elements/Promo-box.php:221 inc/Elements/Slider.php:305
     185#: inc/Elements/Tabs.php:245 inc/Elements/Teaser_Box.php:262
     186#: inc/Elements/WpForm.php:295 inc/Elements/heading-with-separator.php:162
    185187msgid "Title Color"
    186188msgstr ""
    187189
    188190#: inc/Elements/Accordion.php:290 inc/Elements/Tabs.php:256
     191#: inc/Elements/heading-with-separator.php:173
    189192msgid "Title Background Color"
    190193msgstr ""
    191194
    192 #: inc/Elements/Accordion.php:302 inc/Elements/Filterable_Portfolio.php:497
    193 #: inc/Elements/Flip_Box.php:262 inc/Elements/Popular_Post.php:99
     195#: inc/Elements/Accordion.php:302 inc/Elements/Category_Box.php:160
     196#: inc/Elements/Filterable_Portfolio.php:497 inc/Elements/Flip_Box.php:262
     197#: inc/Elements/Icon_Box.php:549 inc/Elements/Popular_Post.php:99
    194198#: inc/Elements/Post_Carousel.php:244 inc/Elements/Post_Grid.php:310
    195 #: inc/Elements/Tabs.php:268 inc/Elements/Teaser_Box.php:273
    196 #: inc/Elements/heading-with-separator.php:182
     199#: inc/Elements/Promo-box.php:232 inc/Elements/Tabs.php:268
     200#: inc/Elements/Teaser_Box.php:273 inc/Elements/heading-with-separator.php:185
    197201msgid "Title Hover Color"
    198202msgstr ""
    199203
    200204#: inc/Elements/Accordion.php:322 inc/Elements/Pricing_Table.php:391
    201 #: inc/Elements/Tabs.php:288
     205#: inc/Elements/Tabs.php:288 inc/Elements/heading-with-separator.php:236
    202206msgid "Title Padding"
    203207msgstr ""
    204208
    205 #: inc/Elements/Accordion.php:370
    206 msgid "Icon Before Title "
     209#: inc/Elements/Accordion.php:370 inc/Elements/Tabs.php:321
     210msgid "Icon Before Title"
    207211msgstr ""
    208212
    209213#: inc/Elements/Accordion.php:378 inc/Elements/Accordion.php:436
    210 #: inc/Elements/Category_List.php:197 inc/Elements/Counter.php:178
    211 #: inc/Elements/Feature_list.php:166 inc/Elements/Icon_Box.php:220
     214#: inc/Elements/Category_List.php:198 inc/Elements/Counter.php:169
     215#: inc/Elements/Feature_list.php:166 inc/Elements/Icon_Box.php:326
    212216#: inc/Elements/Icon_List.php:214 inc/Elements/Pricing_Table.php:503
    213 #: inc/Elements/Social_Icon.php:477 inc/Elements/Staff_Member.php:463
     217#: inc/Elements/Social_Icon.php:477 inc/Elements/Staff_Member.php:521
    214218#: inc/Elements/Tabs.php:329
    215219msgid "Size"
     
    217221
    218222#: inc/Elements/Accordion.php:399 inc/Elements/Accordion.php:458
    219 #: inc/Elements/CTA.php:294 inc/Elements/Category_List.php:220
    220 #: inc/Elements/Counter.php:239 inc/Elements/Creative_Button.php:342
    221 #: inc/Elements/Feature_list.php:229 inc/Elements/Icon_Box.php:293
     223#: inc/Elements/CTA.php:294 inc/Elements/Category_List.php:221
     224#: inc/Elements/Counter.php:230 inc/Elements/Creative_Button.php:342
     225#: inc/Elements/Feature_list.php:229 inc/Elements/Icon_Box.php:414
    222226#: inc/Elements/Icon_List.php:236 inc/Elements/Pricing_Table.php:525
    223 #: inc/Elements/Staff_Member.php:527 inc/Elements/Tabs.php:352
     227#: inc/Elements/Staff_Member.php:585 inc/Elements/Tabs.php:352
    224228msgid "Icon Color"
    225229msgstr ""
    226230
    227231#: inc/Elements/Accordion.php:411 inc/Elements/Accordion.php:470
    228 #: inc/Elements/CTA.php:317 inc/Elements/Category_List.php:232
    229 #: inc/Elements/Counter.php:266 inc/Elements/Creative_Button.php:354
    230 #: inc/Elements/Feature_list.php:241 inc/Elements/Icon_Box.php:305
     232#: inc/Elements/CTA.php:317 inc/Elements/Category_List.php:233
     233#: inc/Elements/Counter.php:257 inc/Elements/Creative_Button.php:354
     234#: inc/Elements/Feature_list.php:241 inc/Elements/Icon_Box.php:426
    231235#: inc/Elements/Icon_List.php:248 inc/Elements/Pricing_Table.php:537
    232 #: inc/Elements/Staff_Member.php:539 inc/Elements/Tabs.php:364
     236#: inc/Elements/Staff_Member.php:597 inc/Elements/Tabs.php:364
    233237msgid "Icon Hover Color"
    234238msgstr ""
     
    238242msgstr ""
    239243
    240 #: inc/Elements/Accordion.php:493 inc/Elements/Counter.php:425
    241 #: inc/Elements/Feature_list.php:324 inc/Elements/Icon_Box.php:468
    242 #: inc/Elements/Image_Overlay.php:211 inc/Elements/Post_Grid.php:529
    243 #: inc/Elements/Promo-box.php:174 inc/Elements/Staff_Member.php:635
    244 #: inc/Elements/Tabs.php:481 inc/Elements/Teaser_Box.php:348
    245 #: inc/Elements/Testimonial_Slider.php:584
     244#: inc/Elements/Accordion.php:493 inc/Elements/Counter.php:468
     245#: inc/Elements/Feature_list.php:324 inc/Elements/Image_Overlay.php:211
     246#: inc/Elements/Post_Grid.php:530 inc/Elements/Tabs.php:481
     247#: inc/Elements/Teaser_Box.php:348 inc/Elements/Testimonial_Slider.php:584
    246248msgid "Content Padding"
    247249msgstr ""
     
    252254
    253255#: inc/Elements/Accordion.php:523 inc/Elements/Filterable_Portfolio.php:595
    254 #: inc/Elements/Post_Grid.php:408
     256#: inc/Elements/Post_Grid.php:409
    255257msgid "Content Color"
    256258msgstr ""
     
    273275#: inc/Elements/Accordion.php:596 inc/Elements/Contact_form_7.php:701
    274276#: inc/Elements/Filterable_Portfolio.php:664 inc/Elements/Ninja_Forms.php:566
    275 #: inc/Elements/Post_Grid.php:474 inc/Elements/Tabs.php:584
     277#: inc/Elements/Post_Grid.php:475 inc/Elements/Tabs.php:584
    276278#: inc/Elements/Teaser_Box.php:428 inc/Elements/WpForm.php:606
    277279msgid "Button Color"
     
    281283#: inc/Elements/Contact_form_7.php:712 inc/Elements/Creative_Button.php:213
    282284#: inc/Elements/Filterable_Portfolio.php:675 inc/Elements/Ninja_Forms.php:577
    283 #: inc/Elements/Post_Grid.php:484 inc/Elements/Pricing_Table.php:750
     285#: inc/Elements/Post_Grid.php:485 inc/Elements/Pricing_Table.php:750
    284286#: inc/Elements/Slider.php:484 inc/Elements/Tabs.php:596
    285287#: inc/Elements/Teaser_Box.php:440 inc/Elements/WpForm.php:617
     
    290292#: inc/Elements/Contact_form_7.php:722
    291293#: inc/Elements/Filterable_Portfolio.php:686 inc/Elements/Ninja_Forms.php:587
    292 #: inc/Elements/Post_Grid.php:494 inc/Elements/Pricing_Table.php:761
     294#: inc/Elements/Post_Grid.php:495 inc/Elements/Pricing_Table.php:761
    293295#: inc/Elements/Slider.php:495 inc/Elements/Subscription.php:173
    294296#: inc/Elements/Tabs.php:608 inc/Elements/Teaser_Box.php:452
     
    300302#: inc/Elements/Contact_form_7.php:732 inc/Elements/Creative_Button.php:225
    301303#: inc/Elements/Filterable_Portfolio.php:697 inc/Elements/Ninja_Forms.php:597
    302 #: inc/Elements/Post_Grid.php:504 inc/Elements/Pricing_Table.php:772
     304#: inc/Elements/Post_Grid.php:505 inc/Elements/Pricing_Table.php:772
    303305#: inc/Elements/Slider.php:506 inc/Elements/Subscription.php:195
    304306#: inc/Elements/Tabs.php:620 inc/Elements/Teaser_Box.php:464
     
    336338
    337339#: inc/Elements/CTA.php:75 inc/Elements/Creative_Button.php:76
    338 #: inc/Elements/Feature_list.php:69 inc/Elements/Icon_Box.php:69
     340#: inc/Elements/Feature_list.php:69 inc/Elements/Icon_Box.php:75
    339341#: inc/Elements/Social_Icon.php:64
    340342msgid "Icon"
     
    350352
    351353#: inc/Elements/CTA.php:100 inc/Elements/Contact_form_7.php:129
    352 #: inc/Elements/Flip_Box.php:74 inc/Elements/Icon_Box.php:105
     354#: inc/Elements/Flip_Box.php:74 inc/Elements/Icon_Box.php:111
    353355#: inc/Elements/Image_Overlay.php:102 inc/Elements/Ninja_Forms.php:147
    354356#: inc/Elements/Pricing_Table.php:77 inc/Elements/Products.php:70
    355357#: inc/Elements/Teaser_Box.php:88 inc/Elements/Testimonial.php:245
    356358#: inc/Elements/Testimonial_Slider.php:346 inc/Elements/WpForm.php:134
    357 #: inc/Elements/heading-with-separator.php:77
     359#: inc/Elements/heading-with-separator.php:79
    358360msgid "Title HTML Tag"
    359361msgstr ""
    360362
    361363#: inc/Elements/CTA.php:105 inc/Elements/Contact_form_7.php:134
    362 #: inc/Elements/Flip_Box.php:79 inc/Elements/Icon_Box.php:110
    363 #: inc/Elements/Image_Overlay.php:107 inc/Elements/Ninja_Forms.php:152
    364 #: inc/Elements/Pricing_Table.php:82 inc/Elements/Products.php:74
    365 #: inc/Elements/Subscription.php:82 inc/Elements/Teaser_Box.php:93
    366 #: inc/Elements/Testimonial.php:250 inc/Elements/Testimonial_Slider.php:351
    367 #: inc/Elements/WpForm.php:139 inc/Elements/heading-with-separator.php:81
     364#: inc/Elements/Flip_Box.php:79 inc/Elements/Image_Overlay.php:107
     365#: inc/Elements/Ninja_Forms.php:152 inc/Elements/Pricing_Table.php:82
     366#: inc/Elements/Products.php:74 inc/Elements/Subscription.php:82
     367#: inc/Elements/Teaser_Box.php:93 inc/Elements/Testimonial.php:250
     368#: inc/Elements/Testimonial_Slider.php:351 inc/Elements/WpForm.php:139
     369#: inc/Elements/heading-with-separator.php:83
    368370msgid "H1"
    369371msgstr ""
    370372
    371373#: inc/Elements/CTA.php:109 inc/Elements/Contact_form_7.php:135
    372 #: inc/Elements/Flip_Box.php:83 inc/Elements/Icon_Box.php:114
    373 #: inc/Elements/Image_Overlay.php:111 inc/Elements/Ninja_Forms.php:153
    374 #: inc/Elements/Pricing_Table.php:86 inc/Elements/Products.php:75
    375 #: inc/Elements/Subscription.php:83 inc/Elements/Teaser_Box.php:97
    376 #: inc/Elements/Testimonial.php:254 inc/Elements/Testimonial_Slider.php:355
    377 #: inc/Elements/WpForm.php:140 inc/Elements/heading-with-separator.php:82
     374#: inc/Elements/Flip_Box.php:83 inc/Elements/Image_Overlay.php:111
     375#: inc/Elements/Ninja_Forms.php:153 inc/Elements/Pricing_Table.php:86
     376#: inc/Elements/Products.php:75 inc/Elements/Subscription.php:83
     377#: inc/Elements/Teaser_Box.php:97 inc/Elements/Testimonial.php:254
     378#: inc/Elements/Testimonial_Slider.php:355 inc/Elements/WpForm.php:140
     379#: inc/Elements/heading-with-separator.php:84
    378380msgid "H2"
    379381msgstr ""
    380382
    381383#: inc/Elements/CTA.php:113 inc/Elements/Contact_form_7.php:136
    382 #: inc/Elements/Flip_Box.php:87 inc/Elements/Icon_Box.php:118
    383 #: inc/Elements/Image_Overlay.php:115 inc/Elements/Ninja_Forms.php:154
    384 #: inc/Elements/Pricing_Table.php:90 inc/Elements/Products.php:76
    385 #: inc/Elements/Subscription.php:84 inc/Elements/Teaser_Box.php:101
    386 #: inc/Elements/Testimonial.php:258 inc/Elements/Testimonial_Slider.php:359
    387 #: inc/Elements/WpForm.php:141 inc/Elements/heading-with-separator.php:83
     384#: inc/Elements/Flip_Box.php:87 inc/Elements/Image_Overlay.php:115
     385#: inc/Elements/Ninja_Forms.php:154 inc/Elements/Pricing_Table.php:90
     386#: inc/Elements/Products.php:76 inc/Elements/Subscription.php:84
     387#: inc/Elements/Teaser_Box.php:101 inc/Elements/Testimonial.php:258
     388#: inc/Elements/Testimonial_Slider.php:359 inc/Elements/WpForm.php:141
     389#: inc/Elements/heading-with-separator.php:85
    388390msgid "H3"
    389391msgstr ""
    390392
    391393#: inc/Elements/CTA.php:117 inc/Elements/Contact_form_7.php:137
    392 #: inc/Elements/Flip_Box.php:91 inc/Elements/Icon_Box.php:122
    393 #: inc/Elements/Image_Overlay.php:119 inc/Elements/Ninja_Forms.php:155
    394 #: inc/Elements/Pricing_Table.php:94 inc/Elements/Products.php:77
    395 #: inc/Elements/Subscription.php:85 inc/Elements/Teaser_Box.php:105
    396 #: inc/Elements/Testimonial.php:262 inc/Elements/Testimonial_Slider.php:363
    397 #: inc/Elements/WpForm.php:142 inc/Elements/heading-with-separator.php:84
     394#: inc/Elements/Flip_Box.php:91 inc/Elements/Image_Overlay.php:119
     395#: inc/Elements/Ninja_Forms.php:155 inc/Elements/Pricing_Table.php:94
     396#: inc/Elements/Products.php:77 inc/Elements/Subscription.php:85
     397#: inc/Elements/Teaser_Box.php:105 inc/Elements/Testimonial.php:262
     398#: inc/Elements/Testimonial_Slider.php:363 inc/Elements/WpForm.php:142
     399#: inc/Elements/heading-with-separator.php:86
    398400msgid "H4"
    399401msgstr ""
    400402
    401403#: inc/Elements/CTA.php:121 inc/Elements/Contact_form_7.php:138
    402 #: inc/Elements/Flip_Box.php:95 inc/Elements/Icon_Box.php:126
    403 #: inc/Elements/Image_Overlay.php:123 inc/Elements/Ninja_Forms.php:156
    404 #: inc/Elements/Pricing_Table.php:98 inc/Elements/Products.php:78
    405 #: inc/Elements/Subscription.php:86 inc/Elements/Teaser_Box.php:109
    406 #: inc/Elements/Testimonial.php:266 inc/Elements/Testimonial_Slider.php:367
    407 #: inc/Elements/WpForm.php:143 inc/Elements/heading-with-separator.php:85
     404#: inc/Elements/Flip_Box.php:95 inc/Elements/Image_Overlay.php:123
     405#: inc/Elements/Ninja_Forms.php:156 inc/Elements/Pricing_Table.php:98
     406#: inc/Elements/Products.php:78 inc/Elements/Subscription.php:86
     407#: inc/Elements/Teaser_Box.php:109 inc/Elements/Testimonial.php:266
     408#: inc/Elements/Testimonial_Slider.php:367 inc/Elements/WpForm.php:143
     409#: inc/Elements/heading-with-separator.php:87
    408410msgid "H5"
    409411msgstr ""
    410412
    411413#: inc/Elements/CTA.php:125 inc/Elements/Contact_form_7.php:139
    412 #: inc/Elements/Flip_Box.php:99 inc/Elements/Icon_Box.php:130
    413 #: inc/Elements/Image_Overlay.php:127 inc/Elements/Ninja_Forms.php:157
    414 #: inc/Elements/Pricing_Table.php:102 inc/Elements/Products.php:79
    415 #: inc/Elements/Subscription.php:87 inc/Elements/Teaser_Box.php:113
    416 #: inc/Elements/Testimonial.php:270 inc/Elements/Testimonial_Slider.php:371
    417 #: inc/Elements/WpForm.php:144 inc/Elements/heading-with-separator.php:86
     414#: inc/Elements/Flip_Box.php:99 inc/Elements/Image_Overlay.php:127
     415#: inc/Elements/Ninja_Forms.php:157 inc/Elements/Pricing_Table.php:102
     416#: inc/Elements/Products.php:79 inc/Elements/Subscription.php:87
     417#: inc/Elements/Teaser_Box.php:113 inc/Elements/Testimonial.php:270
     418#: inc/Elements/Testimonial_Slider.php:371 inc/Elements/WpForm.php:144
     419#: inc/Elements/heading-with-separator.php:88
    418420msgid "H6"
    419421msgstr ""
     
    450452msgstr ""
    451453
    452 #: inc/Elements/CTA.php:222 inc/Elements/Icon_Box.php:212
     454#: inc/Elements/CTA.php:222 inc/Elements/Icon_Box.php:318
    453455msgid "Icon Style"
    454456msgstr ""
     
    459461msgstr ""
    460462
    461 #: inc/Elements/CTA.php:251 inc/Elements/Counter.php:199
    462 #: inc/Elements/Feature_list.php:187 inc/Elements/Icon_Box.php:241
    463 #: inc/Elements/Staff_Member.php:484
     463#: inc/Elements/CTA.php:251 inc/Elements/Counter.php:190
     464#: inc/Elements/Feature_list.php:187 inc/Elements/Icon_Box.php:347
     465#: inc/Elements/Staff_Member.php:542
    464466msgid "Icon Height"
    465467msgstr ""
    466468
    467 #: inc/Elements/CTA.php:272 inc/Elements/Counter.php:220
    468 #: inc/Elements/Feature_list.php:208 inc/Elements/Icon_Box.php:262
    469 #: inc/Elements/Staff_Member.php:506
     469#: inc/Elements/CTA.php:272 inc/Elements/Counter.php:211
     470#: inc/Elements/Feature_list.php:208 inc/Elements/Icon_Box.php:368
     471#: inc/Elements/Staff_Member.php:564
    470472msgid "Icon Width"
    471473msgstr ""
    472474
    473 #: inc/Elements/CTA.php:305 inc/Elements/Counter.php:253
     475#: inc/Elements/CTA.php:305 inc/Elements/Counter.php:244
    474476msgid "Icon Background Color"
    475477msgstr ""
    476478
    477 #: inc/Elements/CTA.php:328 inc/Elements/Counter.php:277
    478 #: inc/Elements/Icon_Box.php:316
     479#: inc/Elements/CTA.php:328 inc/Elements/Counter.php:268
     480#: inc/Elements/Icon_Box.php:437
    479481msgid "Icon Hover Background Color"
    480482msgstr ""
    481483
    482 #: inc/Elements/CTA.php:350 inc/Elements/Counter.php:296
    483 #: inc/Elements/Feature_list.php:284 inc/Elements/Icon_Box.php:338
    484 #: inc/Elements/Staff_Member.php:582
     484#: inc/Elements/CTA.php:350 inc/Elements/Counter.php:287
     485#: inc/Elements/Feature_list.php:284 inc/Elements/Icon_Box.php:459
     486#: inc/Elements/Staff_Member.php:638
    485487msgid "Icon Border Radius"
    486488msgstr ""
     
    498500
    499501#: inc/Elements/CTA.php:393 inc/Elements/Contact_form_7.php:275
    500 #: inc/Elements/Feature_list.php:358 inc/Elements/Icon_Box.php:380
     502#: inc/Elements/Feature_list.php:358 inc/Elements/Icon_Box.php:526
    501503#: inc/Elements/Ninja_Forms.php:293 inc/Elements/Slider.php:326
    502 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:149
     504#: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:150
    503505msgid "Title Bottom Spacing"
    504506msgstr ""
     
    509511
    510512#: inc/Elements/CTA.php:437 inc/Elements/Contact_form_7.php:336
    511 #: inc/Elements/Feature_list.php:414 inc/Elements/Icon_Box.php:438
     513#: inc/Elements/Feature_list.php:414 inc/Elements/Icon_Box.php:615
    512514#: inc/Elements/Ninja_Forms.php:354 inc/Elements/Slider.php:341
    513515#: inc/Elements/Teaser_Box.php:316 inc/Elements/WpForm.php:342
     
    550552msgstr ""
    551553
    552 #: inc/Elements/Category_Box.php:25
     554#: inc/Elements/Category_Box.php:28
    553555msgid "DA: Product Category Box"
    554556msgstr ""
    555557
    556 #: inc/Elements/Category_Box.php:51
     558#: inc/Elements/Category_Box.php:54
    557559msgid "Category Box"
    558560msgstr ""
    559561
    560 #: inc/Elements/Category_Box.php:61 inc/Elements/Category_List.php:101
     562#: inc/Elements/Category_Box.php:64 inc/Elements/Category_List.php:102
    561563msgid "Select Product Category"
    562564msgstr ""
    563565
    564 #: inc/Elements/Category_Box.php:78
     566#: inc/Elements/Category_Box.php:81 inc/Elements/Promo-box.php:134
    565567msgid "Overlay Style"
    566568msgstr ""
    567569
    568 #: inc/Elements/Category_Box.php:86 inc/Elements/Creative_Button.php:236
    569 #: inc/Elements/Flip_Box.php:340 inc/Elements/Icon_List.php:343
    570 #: inc/Elements/Pricing_Table.php:634 inc/Elements/Staff_Member.php:389
    571 #: inc/Elements/Staff_Member.php:434 inc/Elements/Subscription.php:241
     570#: inc/Elements/Category_Box.php:90 inc/Elements/Filterable_Portfolio.php:387
     571#: inc/Elements/Slider.php:292
     572msgid "Overlay Background Color"
     573msgstr ""
     574
     575#: inc/Elements/Category_Box.php:101 inc/Elements/Promo-box.php:169
     576msgid "Overlay Background Hover Color"
     577msgstr ""
     578
     579#: inc/Elements/Category_Box.php:112 inc/Elements/Promo-box.php:180
     580#: inc/Elements/Slider.php:280
     581msgid "Overlay Padding"
     582msgstr ""
     583
     584#: inc/Elements/Category_Box.php:124
     585msgid "Overlay Shadow"
     586msgstr ""
     587
     588#: inc/Elements/Category_Box.php:141
     589msgid "Title Style"
     590msgstr ""
     591
     592#: inc/Elements/Category_Box.php:205
     593msgid "Count Style"
     594msgstr ""
     595
     596#: inc/Elements/Category_Box.php:213
     597msgid "Count Color"
     598msgstr ""
     599
     600#: inc/Elements/Category_Box.php:224
     601msgid "Count Hover Color"
     602msgstr ""
     603
     604#: inc/Elements/Category_Box.php:267
     605msgid "Image Style"
     606msgstr ""
     607
     608#: inc/Elements/Category_Box.php:350 inc/Elements/Products.php:45
     609#: inc/Elements/Products.php:54
     610msgid "Products"
     611msgstr ""
     612
     613#: inc/Elements/Category_List.php:25
     614msgid "DA: Category List"
     615msgstr ""
     616
     617#: inc/Elements/Category_List.php:51
     618msgid "Category List"
     619msgstr ""
     620
     621#: inc/Elements/Category_List.php:62 inc/Elements/Category_List.php:190
     622msgid "Category Icon"
     623msgstr ""
     624
     625#: inc/Elements/Category_List.php:74
     626msgid "Category Type"
     627msgstr ""
     628
     629#: inc/Elements/Category_List.php:79
     630msgid "Post"
     631msgstr ""
     632
     633#: inc/Elements/Category_List.php:80
     634msgid "Product"
     635msgstr ""
     636
     637#: inc/Elements/Category_List.php:89
     638msgid "Select Post Category"
     639msgstr ""
     640
     641#: inc/Elements/Category_List.php:134
     642msgid "Category Link"
     643msgstr ""
     644
     645#: inc/Elements/Category_List.php:143
     646msgid "Item Bottom Spacing"
     647msgstr ""
     648
     649#: inc/Elements/Category_List.php:158
     650msgid "Category Link Color"
     651msgstr ""
     652
     653#: inc/Elements/Category_List.php:168
     654msgid "Category Link Hover Color"
     655msgstr ""
     656
     657#: inc/Elements/Category_List.php:244 inc/Elements/Staff_Member.php:661
     658msgid "Icon Right Spacing"
     659msgstr ""
     660
     661#: inc/Elements/Category_List.php:260
     662msgid "Category Inner Container"
     663msgstr ""
     664
     665#: inc/Elements/Category_List.php:268
     666msgid "Inner Container Padding"
     667msgstr ""
     668
     669#: inc/Elements/Category_List.php:292
     670msgid "Inner Background Hover Color"
     671msgstr ""
     672
     673#: inc/Elements/Category_List.php:312
     674msgid "Inner Container Border Radius"
     675msgstr ""
     676
     677#: inc/Elements/Category_List.php:324
     678msgid "Inner Border Hover Color"
     679msgstr ""
     680
     681#: inc/Elements/Category_List.php:335 inc/Elements/Counter.php:534
     682#: inc/Elements/Icon_Box.php:388 inc/Elements/Staff_Member.php:766
     683msgid "Rotate"
     684msgstr ""
     685
     686#: inc/Elements/Category_List.php:350
     687msgid "Inner Hover Animation"
     688msgstr ""
     689
     690#: inc/Elements/Category_List.php:363
     691msgid "Category Container"
     692msgstr ""
     693
     694#: inc/Elements/Category_List.php:394 inc/Elements/Promo-box.php:295
     695#: inc/Elements/Staff_Member.php:724
     696msgid "Container Background Hover Color"
     697msgstr ""
     698
     699#: inc/Elements/Category_List.php:423 inc/Elements/Staff_Member.php:755
     700msgid "Container Border Hover Color"
     701msgstr ""
     702
     703#: inc/Elements/Category_List.php:433 inc/Elements/Counter.php:549
     704#: inc/Elements/Promo-box.php:314 inc/Elements/Staff_Member.php:781
     705msgid "Container Box Shadow"
     706msgstr ""
     707
     708#: inc/Elements/Category_List.php:443 inc/Elements/Counter.php:559
     709#: inc/Elements/Promo-box.php:324 inc/Elements/Staff_Member.php:791
     710msgid "Container Hover Box Shadow"
     711msgstr ""
     712
     713#: inc/Elements/Contact_form_7.php:25
     714msgid "DA: Contact Form 7"
     715msgstr ""
     716
     717#: inc/Elements/Contact_form_7.php:53 inc/Elements/Ninja_Forms.php:58
     718#: inc/Elements/WpForm.php:58
     719msgid "Reminder Message!"
     720msgstr ""
     721
     722#: inc/Elements/Contact_form_7.php:61
     723msgid ""
     724"Contact Form 7 is not installed & activated. Please install and activate it."
     725msgstr ""
     726
     727#: inc/Elements/Contact_form_7.php:72
     728msgid "Contact Form 7"
     729msgstr ""
     730
     731#: inc/Elements/Contact_form_7.php:83 inc/Elements/Ninja_Forms.php:88
     732#: inc/Elements/WpForm.php:88
     733msgid "Select Form"
     734msgstr ""
     735
     736#: inc/Elements/Contact_form_7.php:103 inc/Elements/Ninja_Forms.php:108
     737#: inc/Elements/WpForm.php:108
     738msgid "Show/Hide Title"
     739msgstr ""
     740
     741#: inc/Elements/Contact_form_7.php:106 inc/Elements/Contact_form_7.php:151
     742#: inc/Elements/Filterable_Portfolio.php:234
     743#: inc/Elements/Filterable_Portfolio.php:247
     744#: inc/Elements/Filterable_Portfolio.php:260 inc/Elements/Icon_Box.php:148
     745#: inc/Elements/Image_Overlay.php:178 inc/Elements/Ninja_Forms.php:111
     746#: inc/Elements/Ninja_Forms.php:124 inc/Elements/Ninja_Forms.php:169
     747#: inc/Elements/Post_Carousel.php:152 inc/Elements/Post_Carousel.php:182
     748#: inc/Elements/Post_Carousel.php:196 inc/Elements/Post_Grid.php:189
     749#: inc/Elements/Post_Grid.php:202 inc/Elements/Post_Grid.php:214
     750#: inc/Elements/Products.php:142 inc/Elements/Promo-box.php:119
     751#: inc/Elements/Slider.php:192 inc/Elements/Slider.php:222
     752#: inc/Elements/Slider.php:270 inc/Elements/Social_Icon.php:102
     753#: inc/Elements/Social_Icon.php:129 inc/Elements/Staff_Member.php:151
     754#: inc/Elements/Testimonial.php:153 inc/Elements/Testimonial_Slider.php:188
     755#: inc/Elements/Testimonial_Slider.php:218 inc/Elements/WpForm.php:111
     756#: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:99
     757msgid "Yes"
     758msgstr ""
     759
     760#: inc/Elements/Contact_form_7.php:107 inc/Elements/Contact_form_7.php:152
     761#: inc/Elements/Filterable_Portfolio.php:235
     762#: inc/Elements/Filterable_Portfolio.php:248
     763#: inc/Elements/Filterable_Portfolio.php:261 inc/Elements/Icon_Box.php:149
     764#: inc/Elements/Image_Overlay.php:179 inc/Elements/Ninja_Forms.php:112
     765#: inc/Elements/Ninja_Forms.php:125 inc/Elements/Ninja_Forms.php:170
     766#: inc/Elements/Post_Carousel.php:153 inc/Elements/Post_Carousel.php:183
     767#: inc/Elements/Post_Carousel.php:197 inc/Elements/Post_Grid.php:190
     768#: inc/Elements/Post_Grid.php:203 inc/Elements/Post_Grid.php:215
     769#: inc/Elements/Products.php:143 inc/Elements/Promo-box.php:120
     770#: inc/Elements/Slider.php:193 inc/Elements/Slider.php:223
     771#: inc/Elements/Slider.php:271 inc/Elements/Social_Icon.php:103
     772#: inc/Elements/Social_Icon.php:130 inc/Elements/Staff_Member.php:152
     773#: inc/Elements/Testimonial.php:154 inc/Elements/Testimonial_Slider.php:189
     774#: inc/Elements/Testimonial_Slider.php:219 inc/Elements/WpForm.php:112
     775#: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:100
     776msgid "No"
     777msgstr ""
     778
     779#: inc/Elements/Contact_form_7.php:118 inc/Elements/Ninja_Forms.php:136
     780#: inc/Elements/WpForm.php:123
     781msgid "Title Text"
     782msgstr ""
     783
     784#: inc/Elements/Contact_form_7.php:122
     785msgid "I am Contact Form 7 Title."
     786msgstr ""
     787
     788#: inc/Elements/Contact_form_7.php:140 inc/Elements/Ninja_Forms.php:158
     789#: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88
     790#: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator.php:89
     791msgid "Span"
     792msgstr ""
     793
     794#: inc/Elements/Contact_form_7.php:148 inc/Elements/Ninja_Forms.php:166
     795#: inc/Elements/WpForm.php:153
     796msgid "Show/Hide Description"
     797msgstr ""
     798
     799#: inc/Elements/Contact_form_7.php:163 inc/Elements/Ninja_Forms.php:181
     800#: inc/Elements/WpForm.php:168
     801msgid "Description Text"
     802msgstr ""
     803
     804#: inc/Elements/Contact_form_7.php:167 inc/Elements/Ninja_Forms.php:185
     805#: inc/Elements/WpForm.php:172
     806msgid ""
     807"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo "
     808"ligula eget ."
     809msgstr ""
     810
     811#: inc/Elements/Contact_form_7.php:173 inc/Elements/Ninja_Forms.php:191
     812#: inc/Elements/WpForm.php:178
     813msgid "Title Align"
     814msgstr ""
     815
     816#: inc/Elements/Contact_form_7.php:179 inc/Elements/Counter.php:136
     817#: inc/Elements/Creative_Button.php:121 inc/Elements/Creative_Button.php:148
     818#: inc/Elements/Feature_list.php:133 inc/Elements/Filterable_Portfolio.php:195
     819#: inc/Elements/Filterable_Portfolio.php:279
     820#: inc/Elements/Filterable_Portfolio.php:621 inc/Elements/Icon_Box.php:182
     821#: inc/Elements/Icon_List.php:140 inc/Elements/Icon_List.php:167
     822#: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:108
     823#: inc/Elements/Post_Grid.php:435 inc/Elements/Pricing_Table.php:202
     824#: inc/Elements/Pricing_Table.php:229 inc/Elements/Social_Icon.php:284
     825#: inc/Elements/Staff_Member.php:236 inc/Elements/Subscription.php:112
     826#: inc/Elements/Teaser_Box.php:164 inc/Elements/Testimonial.php:126
     827#: inc/Elements/Testimonial_Slider.php:247 inc/Elements/Type.php:92
     828#: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184
     829#: inc/Elements/heading-with-separator.php:115
     830msgid "Left"
     831msgstr ""
     832
     833#: inc/Elements/Contact_form_7.php:183 inc/Elements/Counter.php:140
     834#: inc/Elements/Creative_Button.php:125 inc/Elements/Feature_list.php:137
     835#: inc/Elements/Filterable_Portfolio.php:199
     836#: inc/Elements/Filterable_Portfolio.php:283
     837#: inc/Elements/Filterable_Portfolio.php:625 inc/Elements/Icon_Box.php:186
     838#: inc/Elements/Icon_List.php:144 inc/Elements/Ninja_Forms.php:201
     839#: inc/Elements/Post_Grid.php:112 inc/Elements/Post_Grid.php:439
     840#: inc/Elements/Pricing_Table.php:206 inc/Elements/Social_Icon.php:288
     841#: inc/Elements/Staff_Member.php:240 inc/Elements/Subscription.php:116
     842#: inc/Elements/Teaser_Box.php:168 inc/Elements/Testimonial.php:130
     843#: inc/Elements/Testimonial_Slider.php:251 inc/Elements/Type.php:96
     844#: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188
     845#: inc/Elements/heading-with-separator.php:119
     846msgid "Center"
     847msgstr ""
     848
     849#: inc/Elements/Contact_form_7.php:187 inc/Elements/Counter.php:144
     850#: inc/Elements/Creative_Button.php:129 inc/Elements/Creative_Button.php:153
     851#: inc/Elements/Feature_list.php:141 inc/Elements/Filterable_Portfolio.php:203
     852#: inc/Elements/Filterable_Portfolio.php:287
     853#: inc/Elements/Filterable_Portfolio.php:629 inc/Elements/Icon_Box.php:190
     854#: inc/Elements/Icon_List.php:148 inc/Elements/Icon_List.php:172
     855#: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:116
     856#: inc/Elements/Post_Grid.php:443 inc/Elements/Pricing_Table.php:210
     857#: inc/Elements/Pricing_Table.php:234 inc/Elements/Social_Icon.php:292
     858#: inc/Elements/Staff_Member.php:244 inc/Elements/Subscription.php:120
     859#: inc/Elements/Teaser_Box.php:172 inc/Elements/Testimonial.php:134
     860#: inc/Elements/Testimonial.php:138 inc/Elements/Testimonial_Slider.php:255
     861#: inc/Elements/Type.php:100 inc/Elements/Wording.php:148
     862#: inc/Elements/WpForm.php:192 inc/Elements/heading-with-separator.php:123
     863msgid "Right"
     864msgstr ""
     865
     866#: inc/Elements/Contact_form_7.php:203 inc/Elements/Ninja_Forms.php:221
     867#: inc/Elements/WpForm.php:208
     868msgid "Form Container"
     869msgstr ""
     870
     871#: inc/Elements/Contact_form_7.php:222 inc/Elements/Ninja_Forms.php:240
     872#: inc/Elements/WpForm.php:227
     873msgid "Container Margin"
     874msgstr ""
     875
     876#: inc/Elements/Contact_form_7.php:234 inc/Elements/Ninja_Forms.php:252
     877#: inc/Elements/Promo-box.php:284 inc/Elements/WpForm.php:239
     878msgid "Container Background Color"
     879msgstr ""
     880
     881#: inc/Elements/Contact_form_7.php:268 inc/Elements/Ninja_Forms.php:286
     882#: inc/Elements/WpForm.php:273
     883msgid "Form Title"
     884msgstr ""
     885
     886#: inc/Elements/Contact_form_7.php:314 inc/Elements/Ninja_Forms.php:332
     887#: inc/Elements/WpForm.php:319
     888msgid "Form Description"
     889msgstr ""
     890
     891#: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:402
     892#: inc/Elements/Icon_Box.php:599 inc/Elements/Ninja_Forms.php:339
     893#: inc/Elements/Slider.php:362 inc/Elements/WpForm.php:327
     894msgid "Description Bottom Spacing"
     895msgstr ""
     896
     897#: inc/Elements/Contact_form_7.php:360 inc/Elements/Ninja_Forms.php:378
     898#: inc/Elements/WpForm.php:366
     899msgid "Form Label"
     900msgstr ""
     901
     902#: inc/Elements/Contact_form_7.php:367 inc/Elements/Ninja_Forms.php:385
     903#: inc/Elements/WpForm.php:373
     904msgid "Label Bottom Spacing"
     905msgstr ""
     906
     907#: inc/Elements/Contact_form_7.php:379 inc/Elements/Ninja_Forms.php:397
     908#: inc/Elements/WpForm.php:385
     909msgid "Label Color"
     910msgstr ""
     911
     912#: inc/Elements/Contact_form_7.php:403
     913msgid "Text Input"
     914msgstr ""
     915
     916#: inc/Elements/Contact_form_7.php:410
     917msgid "Text Input Bottom Spacing"
     918msgstr ""
     919
     920#: inc/Elements/Contact_form_7.php:421 inc/Elements/Ninja_Forms.php:439
     921#: inc/Elements/WpForm.php:427
     922msgid "Text Input Width"
     923msgstr ""
     924
     925#: inc/Elements/Contact_form_7.php:433
     926msgid "Text Input Color"
     927msgstr ""
     928
     929#: inc/Elements/Contact_form_7.php:444
     930msgid "Text Input Background Color"
     931msgstr ""
     932
     933#: inc/Elements/Contact_form_7.php:455
     934msgid "Text Input Focus Color"
     935msgstr ""
     936
     937#: inc/Elements/Contact_form_7.php:475 inc/Elements/Ninja_Forms.php:493
     938#: inc/Elements/WpForm.php:481
     939msgid "Text Input Padding"
     940msgstr ""
     941
     942#: inc/Elements/Contact_form_7.php:495
     943msgid "Text Input Border Radius"
     944msgstr ""
     945
     946#: inc/Elements/Contact_form_7.php:509
     947msgid "Text Area Input"
     948msgstr ""
     949
     950#: inc/Elements/Contact_form_7.php:516
     951msgid "Text Area Bottom Spacing"
     952msgstr ""
     953
     954#: inc/Elements/Contact_form_7.php:528
     955msgid "Text Area Color"
     956msgstr ""
     957
     958#: inc/Elements/Contact_form_7.php:539
     959msgid "Text Area Background Color"
     960msgstr ""
     961
     962#: inc/Elements/Contact_form_7.php:549
     963msgid "Text Area Focus Color"
     964msgstr ""
     965
     966#: inc/Elements/Contact_form_7.php:569
     967msgid "Text Area Padding"
     968msgstr ""
     969
     970#: inc/Elements/Contact_form_7.php:589
     971msgid "Text Area Border Radius"
     972msgstr ""
     973
     974#: inc/Elements/Contact_form_7.php:604
     975msgid "Checkbox and Radio Button"
     976msgstr ""
     977
     978#: inc/Elements/Contact_form_7.php:612
     979msgid "Checkbox Layout"
     980msgstr ""
     981
     982#: inc/Elements/Contact_form_7.php:616 inc/Elements/Contact_form_7.php:632
     983#: inc/Elements/Counter.php:118 inc/Elements/Icon_List.php:188
     984#: inc/Elements/Skillbar.php:107 inc/Elements/Subscription.php:137
     985#: inc/Elements/Wording.php:107
     986msgid "Inline"
     987msgstr ""
     988
     989#: inc/Elements/Contact_form_7.php:617 inc/Elements/Contact_form_7.php:633
     990#: inc/Elements/Counter.php:119 inc/Elements/Icon_List.php:189
     991#: inc/Elements/Skillbar.php:108 inc/Elements/Subscription.php:138
     992#: inc/Elements/Wording.php:108
     993msgid "Block"
     994msgstr ""
     995
     996#: inc/Elements/Contact_form_7.php:628
     997msgid "Radio Button Layout"
     998msgstr ""
     999
     1000#: inc/Elements/Contact_form_7.php:646
     1001msgid "Checkbox/Radio Button Size"
     1002msgstr ""
     1003
     1004#: inc/Elements/Contact_form_7.php:682 inc/Elements/Ninja_Forms.php:547
     1005#: inc/Elements/WpForm.php:587
     1006msgid "Form Button"
     1007msgstr ""
     1008
     1009#: inc/Elements/Contact_form_7.php:689 inc/Elements/Ninja_Forms.php:554
     1010#: inc/Elements/Pricing_Table.php:703 inc/Elements/Teaser_Box.php:413
     1011#: inc/Elements/WpForm.php:594
     1012msgid "Button Bottom Spacing"
     1013msgstr ""
     1014
     1015#: inc/Elements/Counter.php:30
     1016msgid "DA: Counter"
     1017msgstr ""
     1018
     1019#: inc/Elements/Counter.php:62
     1020msgid "Counter"
     1021msgstr ""
     1022
     1023#: inc/Elements/Counter.php:86
     1024msgid "Counter text"
     1025msgstr ""
     1026
     1027#: inc/Elements/Counter.php:87
     1028msgid "Projects"
     1029msgstr ""
     1030
     1031#: inc/Elements/Counter.php:96
     1032msgid "Start Value"
     1033msgstr ""
     1034
     1035#: inc/Elements/Counter.php:106
     1036msgid "Ending Value"
     1037msgstr ""
     1038
     1039#: inc/Elements/Counter.php:114
     1040msgid "Counter Value Position"
     1041msgstr ""
     1042
     1043#: inc/Elements/Counter.php:130 inc/Elements/Feature_list.php:127
     1044#: inc/Elements/Icon_Box.php:176 inc/Elements/Social_Icon.php:278
     1045#: inc/Elements/Staff_Member.php:230 inc/Elements/Subscription.php:106
     1046#: inc/Elements/Teaser_Box.php:158 inc/Elements/Type.php:86
     1047#: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:109
     1048msgid "Set Alignment"
     1049msgstr ""
     1050
     1051#: inc/Elements/Counter.php:161
     1052msgid "Counter Icon"
     1053msgstr ""
     1054
     1055#: inc/Elements/Counter.php:300 inc/Elements/Feature_list.php:296
     1056#: inc/Elements/Icon_Box.php:492 inc/Elements/Staff_Member.php:674
     1057msgid "Icon Bottom Spacing"
     1058msgstr ""
     1059
     1060#: inc/Elements/Counter.php:322
     1061msgid "Counter Value"
     1062msgstr ""
     1063
     1064#: inc/Elements/Counter.php:331
     1065msgid "Value Color"
     1066msgstr ""
     1067
     1068#: inc/Elements/Counter.php:371
     1069msgid "Counter Value & Text Bottom Spacing"
     1070msgstr ""
     1071
     1072#: inc/Elements/Counter.php:387
     1073msgid "Counter Text"
     1074msgstr ""
     1075
     1076#: inc/Elements/Counter.php:395
     1077msgid "Counter Text Color"
     1078msgstr ""
     1079
     1080#: inc/Elements/Counter.php:407
     1081msgid "Counter Text Hover Color"
     1082msgstr ""
     1083
     1084#: inc/Elements/Counter.php:438
     1085msgid "Text Left Spacing"
     1086msgstr ""
     1087
     1088#: inc/Elements/Counter.php:460
     1089msgid "Counter Content"
     1090msgstr ""
     1091
     1092#: inc/Elements/Counter.php:491
     1093msgid "Counter Background Hover Color"
     1094msgstr ""
     1095
     1096#: inc/Elements/Counter.php:511
     1097msgid "Content Border Radius"
     1098msgstr ""
     1099
     1100#: inc/Elements/Counter.php:523
     1101msgid "Counter Border Hover Color"
     1102msgstr ""
     1103
     1104#: inc/Elements/Creative_Button.php:30
     1105msgid "DA: Creative Button"
     1106msgstr ""
     1107
     1108#: inc/Elements/Creative_Button.php:65
     1109msgid "Creative Button"
     1110msgstr ""
     1111
     1112#: inc/Elements/Creative_Button.php:115
     1113msgid "Button Align"
     1114msgstr ""
     1115
     1116#: inc/Elements/Creative_Button.php:142 inc/Elements/Icon_List.php:161
     1117#: inc/Elements/Pricing_Table.php:223
     1118msgid "Icon Position"
     1119msgstr ""
     1120
     1121#: inc/Elements/Creative_Button.php:165 inc/Elements/Social_Icon.php:572
     1122msgid "Button Hover Animation"
     1123msgstr ""
     1124
     1125#: inc/Elements/Creative_Button.php:183
     1126msgid "Button & Text"
     1127msgstr ""
     1128
     1129#: inc/Elements/Creative_Button.php:236 inc/Elements/Flip_Box.php:340
     1130#: inc/Elements/Icon_List.php:343 inc/Elements/Pricing_Table.php:634
     1131#: inc/Elements/Staff_Member.php:492 inc/Elements/Subscription.php:241
    5721132#: inc/Elements/Testimonial.php:294 inc/Elements/Testimonial.php:337
    5731133#: inc/Elements/Testimonial.php:380 inc/Elements/Testimonial_Slider.php:395
     
    5771137msgstr ""
    5781138
    579 #: inc/Elements/Category_Box.php:172 inc/Elements/Products.php:45
    580 #: inc/Elements/Products.php:54
    581 msgid "Products"
    582 msgstr ""
    583 
    584 #: inc/Elements/Category_List.php:24
    585 msgid "DA: Category List"
    586 msgstr ""
    587 
    588 #: inc/Elements/Category_List.php:50
    589 msgid "Category List"
    590 msgstr ""
    591 
    592 #: inc/Elements/Category_List.php:61 inc/Elements/Category_List.php:189
    593 msgid "Category Icon"
    594 msgstr ""
    595 
    596 #: inc/Elements/Category_List.php:73
    597 msgid "Category Type"
    598 msgstr ""
    599 
    600 #: inc/Elements/Category_List.php:78
    601 msgid "Post"
    602 msgstr ""
    603 
    604 #: inc/Elements/Category_List.php:79
    605 msgid "Product"
    606 msgstr ""
    607 
    608 #: inc/Elements/Category_List.php:88
    609 msgid "Select Post Category"
    610 msgstr ""
    611 
    612 #: inc/Elements/Category_List.php:133
    613 msgid "Category Link"
    614 msgstr ""
    615 
    616 #: inc/Elements/Category_List.php:142
    617 msgid "Item Bottom Spacing"
    618 msgstr ""
    619 
    620 #: inc/Elements/Category_List.php:157
    621 msgid "Category Link Color"
    622 msgstr ""
    623 
    624 #: inc/Elements/Category_List.php:167
    625 msgid "Category Link Hover Color"
    626 msgstr ""
    627 
    628 #: inc/Elements/Category_List.php:243 inc/Elements/Staff_Member.php:594
    629 msgid "Icon Right Spacing"
    630 msgstr ""
    631 
    632 #: inc/Elements/Category_List.php:259
    633 msgid "Category Inner Container"
    634 msgstr ""
    635 
    636 #: inc/Elements/Category_List.php:267
    637 msgid "Inner Container Padding"
    638 msgstr ""
    639 
    640 #: inc/Elements/Category_List.php:298
    641 msgid "Inner Container Border Radius"
    642 msgstr ""
    643 
    644 #: inc/Elements/Category_List.php:312
    645 msgid "Category Container"
    646 msgstr ""
    647 
    648 #: inc/Elements/Contact_form_7.php:25
    649 msgid "DA: Contact Form 7"
    650 msgstr ""
    651 
    652 #: inc/Elements/Contact_form_7.php:53 inc/Elements/Ninja_Forms.php:58
    653 #: inc/Elements/WpForm.php:58
    654 msgid "Reminder Message!"
    655 msgstr ""
    656 
    657 #: inc/Elements/Contact_form_7.php:61
    658 msgid ""
    659 "Contact Form 7 is not installed & activated. Please install and activate it."
    660 msgstr ""
    661 
    662 #: inc/Elements/Contact_form_7.php:72
    663 msgid "Contact Form 7"
    664 msgstr ""
    665 
    666 #: inc/Elements/Contact_form_7.php:83 inc/Elements/Ninja_Forms.php:88
    667 #: inc/Elements/WpForm.php:88
    668 msgid "Select Form"
    669 msgstr ""
    670 
    671 #: inc/Elements/Contact_form_7.php:103 inc/Elements/Ninja_Forms.php:108
    672 #: inc/Elements/WpForm.php:108
    673 msgid "Show/Hide Title"
    674 msgstr ""
    675 
    676 #: inc/Elements/Contact_form_7.php:106 inc/Elements/Contact_form_7.php:151
    677 #: inc/Elements/Filterable_Portfolio.php:234
    678 #: inc/Elements/Filterable_Portfolio.php:247
    679 #: inc/Elements/Filterable_Portfolio.php:260
    680 #: inc/Elements/Image_Overlay.php:178 inc/Elements/Ninja_Forms.php:111
    681 #: inc/Elements/Ninja_Forms.php:124 inc/Elements/Ninja_Forms.php:169
    682 #: inc/Elements/Post_Carousel.php:152 inc/Elements/Post_Carousel.php:182
    683 #: inc/Elements/Post_Carousel.php:196 inc/Elements/Post_Grid.php:189
    684 #: inc/Elements/Post_Grid.php:202 inc/Elements/Post_Grid.php:214
    685 #: inc/Elements/Products.php:142 inc/Elements/Promo-box.php:117
    686 #: inc/Elements/Slider.php:192 inc/Elements/Slider.php:222
    687 #: inc/Elements/Slider.php:270 inc/Elements/Social_Icon.php:102
    688 #: inc/Elements/Social_Icon.php:129 inc/Elements/Staff_Member.php:148
    689 #: inc/Elements/Testimonial.php:153 inc/Elements/Testimonial_Slider.php:188
    690 #: inc/Elements/Testimonial_Slider.php:218 inc/Elements/WpForm.php:111
    691 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:97
    692 msgid "Yes"
    693 msgstr ""
    694 
    695 #: inc/Elements/Contact_form_7.php:107 inc/Elements/Contact_form_7.php:152
    696 #: inc/Elements/Filterable_Portfolio.php:235
    697 #: inc/Elements/Filterable_Portfolio.php:248
    698 #: inc/Elements/Filterable_Portfolio.php:261
    699 #: inc/Elements/Image_Overlay.php:179 inc/Elements/Ninja_Forms.php:112
    700 #: inc/Elements/Ninja_Forms.php:125 inc/Elements/Ninja_Forms.php:170
    701 #: inc/Elements/Post_Carousel.php:153 inc/Elements/Post_Carousel.php:183
    702 #: inc/Elements/Post_Carousel.php:197 inc/Elements/Post_Grid.php:190
    703 #: inc/Elements/Post_Grid.php:203 inc/Elements/Post_Grid.php:215
    704 #: inc/Elements/Products.php:143 inc/Elements/Promo-box.php:118
    705 #: inc/Elements/Slider.php:193 inc/Elements/Slider.php:223
    706 #: inc/Elements/Slider.php:271 inc/Elements/Social_Icon.php:103
    707 #: inc/Elements/Social_Icon.php:130 inc/Elements/Staff_Member.php:149
    708 #: inc/Elements/Testimonial.php:154 inc/Elements/Testimonial_Slider.php:189
    709 #: inc/Elements/Testimonial_Slider.php:219 inc/Elements/WpForm.php:112
    710 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:98
    711 msgid "No"
    712 msgstr ""
    713 
    714 #: inc/Elements/Contact_form_7.php:118 inc/Elements/Ninja_Forms.php:136
    715 #: inc/Elements/WpForm.php:123
    716 msgid "Title Text"
    717 msgstr ""
    718 
    719 #: inc/Elements/Contact_form_7.php:122
    720 msgid "I am Contact Form 7 Title."
    721 msgstr ""
    722 
    723 #: inc/Elements/Contact_form_7.php:140 inc/Elements/Ninja_Forms.php:158
    724 #: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88
    725 #: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator.php:87
    726 msgid "Span"
    727 msgstr ""
    728 
    729 #: inc/Elements/Contact_form_7.php:148 inc/Elements/Ninja_Forms.php:166
    730 #: inc/Elements/WpForm.php:153
    731 msgid "Show/Hide Description"
    732 msgstr ""
    733 
    734 #: inc/Elements/Contact_form_7.php:163 inc/Elements/Ninja_Forms.php:181
    735 #: inc/Elements/WpForm.php:168
    736 msgid "Description Text"
    737 msgstr ""
    738 
    739 #: inc/Elements/Contact_form_7.php:167 inc/Elements/Ninja_Forms.php:185
    740 #: inc/Elements/WpForm.php:172
    741 msgid ""
    742 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo "
    743 "ligula eget ."
    744 msgstr ""
    745 
    746 #: inc/Elements/Contact_form_7.php:173 inc/Elements/Ninja_Forms.php:191
    747 #: inc/Elements/WpForm.php:178
    748 msgid "Title Align"
    749 msgstr ""
    750 
    751 #: inc/Elements/Contact_form_7.php:179 inc/Elements/Counter.php:121
    752 #: inc/Elements/Creative_Button.php:121 inc/Elements/Creative_Button.php:148
    753 #: inc/Elements/Feature_list.php:133 inc/Elements/Filterable_Portfolio.php:195
    754 #: inc/Elements/Filterable_Portfolio.php:279
    755 #: inc/Elements/Filterable_Portfolio.php:621 inc/Elements/Icon_Box.php:176
    756 #: inc/Elements/Icon_List.php:140 inc/Elements/Icon_List.php:167
    757 #: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:108
    758 #: inc/Elements/Post_Grid.php:434 inc/Elements/Pricing_Table.php:202
    759 #: inc/Elements/Pricing_Table.php:229 inc/Elements/Social_Icon.php:284
    760 #: inc/Elements/Staff_Member.php:233 inc/Elements/Subscription.php:112
    761 #: inc/Elements/Teaser_Box.php:164 inc/Elements/Testimonial.php:126
    762 #: inc/Elements/Testimonial_Slider.php:247 inc/Elements/Type.php:92
    763 #: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184
    764 #: inc/Elements/heading-with-separator.php:113
    765 msgid "Left"
    766 msgstr ""
    767 
    768 #: inc/Elements/Contact_form_7.php:183 inc/Elements/Counter.php:125
    769 #: inc/Elements/Creative_Button.php:125 inc/Elements/Feature_list.php:137
    770 #: inc/Elements/Filterable_Portfolio.php:199
    771 #: inc/Elements/Filterable_Portfolio.php:283
    772 #: inc/Elements/Filterable_Portfolio.php:625 inc/Elements/Icon_Box.php:180
    773 #: inc/Elements/Icon_List.php:144 inc/Elements/Ninja_Forms.php:201
    774 #: inc/Elements/Post_Grid.php:112 inc/Elements/Post_Grid.php:438
    775 #: inc/Elements/Pricing_Table.php:206 inc/Elements/Social_Icon.php:288
    776 #: inc/Elements/Staff_Member.php:237 inc/Elements/Subscription.php:116
    777 #: inc/Elements/Teaser_Box.php:168 inc/Elements/Testimonial.php:130
    778 #: inc/Elements/Testimonial_Slider.php:251 inc/Elements/Type.php:96
    779 #: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188
    780 #: inc/Elements/heading-with-separator.php:117
    781 msgid "Center"
    782 msgstr ""
    783 
    784 #: inc/Elements/Contact_form_7.php:187 inc/Elements/Counter.php:129
    785 #: inc/Elements/Creative_Button.php:129 inc/Elements/Creative_Button.php:153
    786 #: inc/Elements/Feature_list.php:141 inc/Elements/Filterable_Portfolio.php:203
    787 #: inc/Elements/Filterable_Portfolio.php:287
    788 #: inc/Elements/Filterable_Portfolio.php:629 inc/Elements/Icon_Box.php:184
    789 #: inc/Elements/Icon_List.php:148 inc/Elements/Icon_List.php:172
    790 #: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:116
    791 #: inc/Elements/Post_Grid.php:442 inc/Elements/Pricing_Table.php:210
    792 #: inc/Elements/Pricing_Table.php:234 inc/Elements/Social_Icon.php:292
    793 #: inc/Elements/Staff_Member.php:241 inc/Elements/Subscription.php:120
    794 #: inc/Elements/Teaser_Box.php:172 inc/Elements/Testimonial.php:134
    795 #: inc/Elements/Testimonial.php:138 inc/Elements/Testimonial_Slider.php:255
    796 #: inc/Elements/Type.php:100 inc/Elements/Wording.php:148
    797 #: inc/Elements/WpForm.php:192 inc/Elements/heading-with-separator.php:121
    798 msgid "Right"
    799 msgstr ""
    800 
    801 #: inc/Elements/Contact_form_7.php:203 inc/Elements/Ninja_Forms.php:221
    802 #: inc/Elements/WpForm.php:208
    803 msgid "Form Container"
    804 msgstr ""
    805 
    806 #: inc/Elements/Contact_form_7.php:222 inc/Elements/Ninja_Forms.php:240
    807 #: inc/Elements/WpForm.php:227
    808 msgid "Container Margin"
    809 msgstr ""
    810 
    811 #: inc/Elements/Contact_form_7.php:234 inc/Elements/Ninja_Forms.php:252
    812 #: inc/Elements/WpForm.php:239
    813 msgid "Container Background Color"
    814 msgstr ""
    815 
    816 #: inc/Elements/Contact_form_7.php:268 inc/Elements/Ninja_Forms.php:286
    817 #: inc/Elements/WpForm.php:273
    818 msgid "Form Title"
    819 msgstr ""
    820 
    821 #: inc/Elements/Contact_form_7.php:314 inc/Elements/Ninja_Forms.php:332
    822 #: inc/Elements/WpForm.php:319
    823 msgid "Form Description"
    824 msgstr ""
    825 
    826 #: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:402
    827 #: inc/Elements/Icon_Box.php:422 inc/Elements/Ninja_Forms.php:339
    828 #: inc/Elements/Slider.php:362 inc/Elements/WpForm.php:327
    829 msgid "Description Bottom Spacing"
    830 msgstr ""
    831 
    832 #: inc/Elements/Contact_form_7.php:360 inc/Elements/Ninja_Forms.php:378
    833 #: inc/Elements/WpForm.php:366
    834 msgid "Form Label"
    835 msgstr ""
    836 
    837 #: inc/Elements/Contact_form_7.php:367 inc/Elements/Ninja_Forms.php:385
    838 #: inc/Elements/WpForm.php:373
    839 msgid "Label Bottom Spacing"
    840 msgstr ""
    841 
    842 #: inc/Elements/Contact_form_7.php:379 inc/Elements/Ninja_Forms.php:397
    843 #: inc/Elements/WpForm.php:385
    844 msgid "Label Color"
    845 msgstr ""
    846 
    847 #: inc/Elements/Contact_form_7.php:403
    848 msgid "Text Input"
    849 msgstr ""
    850 
    851 #: inc/Elements/Contact_form_7.php:410
    852 msgid "Text Input Bottom Spacing"
    853 msgstr ""
    854 
    855 #: inc/Elements/Contact_form_7.php:421 inc/Elements/Ninja_Forms.php:439
    856 #: inc/Elements/WpForm.php:427
    857 msgid "Text Input Width"
    858 msgstr ""
    859 
    860 #: inc/Elements/Contact_form_7.php:433
    861 msgid "Text Input Color"
    862 msgstr ""
    863 
    864 #: inc/Elements/Contact_form_7.php:444
    865 msgid "Text Input Background Color"
    866 msgstr ""
    867 
    868 #: inc/Elements/Contact_form_7.php:455
    869 msgid "Text Input Focus Color"
    870 msgstr ""
    871 
    872 #: inc/Elements/Contact_form_7.php:475 inc/Elements/Ninja_Forms.php:493
    873 #: inc/Elements/WpForm.php:481
    874 msgid "Text Input Padding"
    875 msgstr ""
    876 
    877 #: inc/Elements/Contact_form_7.php:495
    878 msgid "Text Input Border Radius"
    879 msgstr ""
    880 
    881 #: inc/Elements/Contact_form_7.php:509
    882 msgid "Text Area Input"
    883 msgstr ""
    884 
    885 #: inc/Elements/Contact_form_7.php:516
    886 msgid "Text Area Bottom Spacing"
    887 msgstr ""
    888 
    889 #: inc/Elements/Contact_form_7.php:528
    890 msgid "Text Area Color"
    891 msgstr ""
    892 
    893 #: inc/Elements/Contact_form_7.php:539
    894 msgid "Text Area Background Color"
    895 msgstr ""
    896 
    897 #: inc/Elements/Contact_form_7.php:549
    898 msgid "Text Area Focus Color"
    899 msgstr ""
    900 
    901 #: inc/Elements/Contact_form_7.php:569
    902 msgid "Text Area Padding"
    903 msgstr ""
    904 
    905 #: inc/Elements/Contact_form_7.php:589
    906 msgid "Text Area Border Radius"
    907 msgstr ""
    908 
    909 #: inc/Elements/Contact_form_7.php:604
    910 msgid "Checkbox and Radio Button"
    911 msgstr ""
    912 
    913 #: inc/Elements/Contact_form_7.php:612
    914 msgid "Checkbox Layout"
    915 msgstr ""
    916 
    917 #: inc/Elements/Contact_form_7.php:616 inc/Elements/Contact_form_7.php:632
    918 #: inc/Elements/Icon_List.php:188 inc/Elements/Skillbar.php:107
    919 #: inc/Elements/Subscription.php:137 inc/Elements/Wording.php:107
    920 msgid "Inline"
    921 msgstr ""
    922 
    923 #: inc/Elements/Contact_form_7.php:617 inc/Elements/Contact_form_7.php:633
    924 #: inc/Elements/Icon_List.php:189 inc/Elements/Skillbar.php:108
    925 #: inc/Elements/Subscription.php:138 inc/Elements/Wording.php:108
    926 msgid "Block"
    927 msgstr ""
    928 
    929 #: inc/Elements/Contact_form_7.php:628
    930 msgid "Radio Button Layout"
    931 msgstr ""
    932 
    933 #: inc/Elements/Contact_form_7.php:646
    934 msgid "Checkbox/Radio Button Size"
    935 msgstr ""
    936 
    937 #: inc/Elements/Contact_form_7.php:682 inc/Elements/Ninja_Forms.php:547
    938 #: inc/Elements/WpForm.php:587
    939 msgid "Form Button"
    940 msgstr ""
    941 
    942 #: inc/Elements/Contact_form_7.php:689 inc/Elements/Ninja_Forms.php:554
    943 #: inc/Elements/Pricing_Table.php:703 inc/Elements/Teaser_Box.php:413
    944 #: inc/Elements/WpForm.php:594
    945 msgid "Button Bottom Spacing"
    946 msgstr ""
    947 
    948 #: inc/Elements/Counter.php:27
    949 msgid "DA: Counter"
    950 msgstr ""
    951 
    952 #: inc/Elements/Counter.php:63
    953 msgid "Counter"
    954 msgstr ""
    955 
    956 #: inc/Elements/Counter.php:87
    957 msgid "Counter text"
    958 msgstr ""
    959 
    960 #: inc/Elements/Counter.php:88
    961 msgid "Projects"
    962 msgstr ""
    963 
    964 #: inc/Elements/Counter.php:97
    965 msgid "Start Value"
    966 msgstr ""
    967 
    968 #: inc/Elements/Counter.php:107
    969 msgid "Ending Value"
    970 msgstr ""
    971 
    972 #: inc/Elements/Counter.php:115 inc/Elements/Feature_list.php:127
    973 #: inc/Elements/Icon_Box.php:170 inc/Elements/Social_Icon.php:278
    974 #: inc/Elements/Staff_Member.php:227 inc/Elements/Subscription.php:106
    975 #: inc/Elements/Teaser_Box.php:158 inc/Elements/Type.php:86
    976 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:107
    977 msgid "Set Alignment"
    978 msgstr ""
    979 
    980 #: inc/Elements/Counter.php:146
    981 msgid "Counter Item Style"
    982 msgstr ""
    983 
    984 #: inc/Elements/Counter.php:153 inc/Elements/Icon_Box.php:195
    985 #: inc/Elements/Staff_Member.php:253 inc/Elements/Testimonial.php:173
    986 #: inc/Elements/Testimonial_Slider.php:272
    987 msgid "Background Shadow Style"
    988 msgstr ""
    989 
    990 #: inc/Elements/Counter.php:157 inc/Elements/Icon_Box.php:199
    991 #: inc/Elements/Staff_Member.php:257 inc/Elements/Testimonial.php:177
    992 #: inc/Elements/Testimonial_Slider.php:276 inc/Reuses/Reuse.php:372
    993 msgid "None"
    994 msgstr ""
    995 
    996 #: inc/Elements/Counter.php:158 inc/Elements/Icon_Box.php:200
    997 #: inc/Elements/Staff_Member.php:258 inc/Elements/Testimonial.php:178
    998 #: inc/Elements/Testimonial_Slider.php:277
    999 msgid "Style1"
    1000 msgstr ""
    1001 
    1002 #: inc/Elements/Counter.php:159 inc/Elements/Icon_Box.php:201
    1003 #: inc/Elements/Staff_Member.php:259 inc/Elements/Testimonial.php:179
    1004 #: inc/Elements/Testimonial_Slider.php:278
    1005 msgid "Style2"
    1006 msgstr ""
    1007 
    1008 #: inc/Elements/Counter.php:160 inc/Elements/Icon_Box.php:202
    1009 #: inc/Elements/Staff_Member.php:260 inc/Elements/Testimonial.php:180
    1010 #: inc/Elements/Testimonial_Slider.php:279
    1011 msgid "Style3"
    1012 msgstr ""
    1013 
    1014 #: inc/Elements/Counter.php:170
    1015 msgid "Counter Icon"
    1016 msgstr ""
    1017 
    1018 #: inc/Elements/Counter.php:309 inc/Elements/Feature_list.php:296
    1019 #: inc/Elements/Icon_Box.php:350 inc/Elements/Staff_Member.php:607
    1020 msgid "Icon Bottom Spacing"
    1021 msgstr ""
    1022 
    1023 #: inc/Elements/Counter.php:331
    1024 msgid "Counter Value"
    1025 msgstr ""
    1026 
    1027 #: inc/Elements/Counter.php:340
    1028 msgid "Value Color"
    1029 msgstr ""
    1030 
    1031 #: inc/Elements/Counter.php:360
    1032 msgid "Counter Value & Text Bottom Spacing"
    1033 msgstr ""
    1034 
    1035 #: inc/Elements/Counter.php:376
    1036 msgid "Counter Text"
    1037 msgstr ""
    1038 
    1039 #: inc/Elements/Counter.php:384
    1040 msgid "Counter Text Color"
    1041 msgstr ""
    1042 
    1043 #: inc/Elements/Counter.php:395
    1044 msgid "Text Left Spacing"
    1045 msgstr ""
    1046 
    1047 #: inc/Elements/Counter.php:417
    1048 msgid "Counter Content"
    1049 msgstr ""
    1050 
    1051 #: inc/Elements/Counter.php:457 inc/Elements/Icon_Box.php:501
    1052 msgid "Content Border Radius"
    1053 msgstr ""
    1054 
    1055 #: inc/Elements/Creative_Button.php:30
    1056 msgid "DA: Creative Button"
    1057 msgstr ""
    1058 
    1059 #: inc/Elements/Creative_Button.php:65
    1060 msgid "Creative Button"
    1061 msgstr ""
    1062 
    1063 #: inc/Elements/Creative_Button.php:115
    1064 msgid "Button Align"
    1065 msgstr ""
    1066 
    1067 #: inc/Elements/Creative_Button.php:142 inc/Elements/Icon_List.php:161
    1068 #: inc/Elements/Pricing_Table.php:223
    1069 msgid "Icon Position"
    1070 msgstr ""
    1071 
    1072 #: inc/Elements/Creative_Button.php:165 inc/Elements/Social_Icon.php:572
    1073 msgid "Button Hover Animation"
    1074 msgstr ""
    1075 
    1076 #: inc/Elements/Creative_Button.php:183
    1077 msgid "Button & Text"
    1078 msgstr ""
    1079 
    10801139#: inc/Elements/Creative_Button.php:247 inc/Elements/Icon_List.php:353
    10811140#: inc/Elements/Pricing_Table.php:656
     
    10831142msgstr ""
    10841143
    1085 #: inc/Elements/Creative_Button.php:299
     1144#: inc/Elements/Creative_Button.php:299 inc/Elements/Icon_Box.php:253
    10861145msgid "Border Hover Color"
    10871146msgstr ""
     
    11311190#: inc/Elements/Feature_list.php:263 inc/Elements/Post_Carousel.php:365
    11321191#: inc/Elements/Products.php:299 inc/Elements/Slider.php:420
    1133 #: inc/Elements/Staff_Member.php:561 inc/Elements/Testimonial_Slider.php:653
     1192#: inc/Elements/Staff_Member.php:619 inc/Elements/Testimonial_Slider.php:653
    11341193msgid "Hover Background Color"
    11351194msgstr ""
     
    12681327
    12691328#: inc/Elements/Filterable_Portfolio.php:221 inc/Elements/Teaser_Box.php:137
    1270 #: inc/Reuses/Reuse.php:27
     1329#: inc/Reuses/Reuse.php:24
    12711330msgid "Read More"
    12721331msgstr ""
     
    13221381msgstr ""
    13231382
    1324 #: inc/Elements/Filterable_Portfolio.php:387 inc/Elements/Slider.php:292
    1325 msgid "Overlay Background Color"
    1326 msgstr ""
    1327 
    13281383#: inc/Elements/Filterable_Portfolio.php:398
    13291384msgid "Overlay Title Color"
     
    13571412msgstr ""
    13581413
    1359 #: inc/Elements/Filterable_Portfolio.php:570 inc/Elements/Post_Grid.php:387
     1414#: inc/Elements/Filterable_Portfolio.php:570 inc/Elements/Post_Grid.php:388
    13601415msgid "Blog Post Text"
    13611416msgstr ""
    13621417
    1363 #: inc/Elements/Filterable_Portfolio.php:583 inc/Elements/Post_Grid.php:396
     1418#: inc/Elements/Filterable_Portfolio.php:583 inc/Elements/Post_Grid.php:397
    13641419msgid "Content Bottom Spacing"
    13651420msgstr ""
    13661421
    1367 #: inc/Elements/Filterable_Portfolio.php:615 inc/Elements/Post_Grid.php:428
     1422#: inc/Elements/Filterable_Portfolio.php:615 inc/Elements/Post_Grid.php:429
    13681423msgid "Text Align"
    13691424msgstr ""
    13701425
    1371 #: inc/Elements/Filterable_Portfolio.php:633 inc/Elements/Post_Grid.php:446
     1426#: inc/Elements/Filterable_Portfolio.php:633 inc/Elements/Post_Grid.php:447
    13721427msgid "Justify"
    13731428msgstr ""
    13741429
    1375 #: inc/Elements/Filterable_Portfolio.php:651 inc/Elements/Post_Grid.php:464
     1430#: inc/Elements/Filterable_Portfolio.php:651 inc/Elements/Post_Grid.php:465
    13761431msgid "Blog Read More Button"
    13771432msgstr ""
     
    13891444msgstr ""
    13901445
    1391 #: inc/Elements/Filterable_Portfolio.php:902 inc/Elements/Post_Grid.php:754
     1446#: inc/Elements/Filterable_Portfolio.php:902 inc/Elements/Post_Grid.php:755
    13921447#, php-format
    13931448msgid "Continue reading%s"
    13941449msgstr ""
    13951450
    1396 #: inc/Elements/Filterable_Portfolio.php:911 inc/Elements/Post_Grid.php:764
     1451#: inc/Elements/Filterable_Portfolio.php:911 inc/Elements/Post_Grid.php:765
    13971452msgid ", "
    13981453msgstr ""
    13991454
    1400 #: inc/Elements/Filterable_Portfolio.php:913 inc/Elements/Post_Grid.php:766
     1455#: inc/Elements/Filterable_Portfolio.php:913 inc/Elements/Post_Grid.php:767
    14011456#, php-format
    14021457msgid "Tagged %1$s"
     
    14191474msgstr ""
    14201475
    1421 #: inc/Elements/Flip_Box.php:68 inc/Elements/Staff_Member.php:107
     1476#: inc/Elements/Flip_Box.php:68 inc/Elements/Staff_Member.php:110
    14221477#: inc/Elements/Teaser_Box.php:82 inc/Elements/Testimonial.php:94
    14231478#: inc/Elements/Testimonial_Slider.php:86
     
    14771532msgstr ""
    14781533
    1479 #: inc/Elements/Icon_Box.php:25
     1534#: inc/Elements/Icon_Box.php:31
    14801535msgid "DA: Icon Box"
    14811536msgstr ""
    14821537
    1483 #: inc/Elements/Icon_Box.php:59
     1538#: inc/Elements/Icon_Box.php:65
    14841539msgid "Icon Box"
    14851540msgstr ""
    14861541
    1487 #: inc/Elements/Icon_Box.php:82
     1542#: inc/Elements/Icon_Box.php:88
    14881543msgid "Icon Link"
    14891544msgstr ""
    14901545
    1491 #: inc/Elements/Icon_Box.php:96 inc/Elements/Icon_Box.php:371
     1546#: inc/Elements/Icon_Box.php:91 inc/Elements/Promo-box.php:84
     1547msgid "https://softfirm.net/"
     1548msgstr ""
     1549
     1550#: inc/Elements/Icon_Box.php:102 inc/Elements/Icon_Box.php:517
    14921551msgid "Icon Box Title"
    14931552msgstr ""
    14941553
    1495 #: inc/Elements/Icon_Box.php:98
     1554#: inc/Elements/Icon_Box.php:104
    14961555msgid "I am Icon Title."
    14971556msgstr ""
    14981557
    1499 #: inc/Elements/Icon_Box.php:144
     1558#: inc/Elements/Icon_Box.php:135
    15001559msgid "Icon Box Text"
    15011560msgstr ""
    15021561
    1503 #: inc/Elements/Icon_Box.php:146
     1562#: inc/Elements/Icon_Box.php:137
    15041563msgid "Add Icon text here or leave it blank."
    15051564msgstr ""
    15061565
    1507 #: inc/Elements/Icon_Box.php:162
     1566#: inc/Elements/Icon_Box.php:145
     1567msgid "Enable Link on Text?"
     1568msgstr ""
     1569
     1570#: inc/Elements/Icon_Box.php:168
    15081571msgid "Icon_Box Item Style"
    15091572msgstr ""
    15101573
    1511 #: inc/Elements/Icon_Box.php:414
     1574#: inc/Elements/Icon_Box.php:202 inc/Elements/Social_Icon.php:168
     1575#: inc/Elements/Social_Icon.php:215 inc/Elements/Social_Icon.php:319
     1576#: inc/Elements/Social_Icon.php:403 inc/Elements/Social_Icon.php:451
     1577msgid "Background Color"
     1578msgstr ""
     1579
     1580#: inc/Elements/Icon_Box.php:219
     1581msgid "Background Hover Color"
     1582msgstr ""
     1583
     1584#: inc/Elements/Icon_Box.php:279
     1585msgid "Container Shadow"
     1586msgstr ""
     1587
     1588#: inc/Elements/Icon_Box.php:289
     1589msgid "Container Hover Shadow"
     1590msgstr ""
     1591
     1592#: inc/Elements/Icon_Box.php:301 inc/Elements/Icon_Box.php:482
     1593msgid "Icon Hover Animation"
     1594msgstr ""
     1595
     1596#: inc/Elements/Icon_Box.php:591
    15121597msgid "Icon Box Description"
    1513 msgstr ""
    1514 
    1515 #: inc/Elements/Icon_Box.php:460
    1516 msgid "Icon Box Content"
    15171598msgstr ""
    15181599
     
    15791660
    15801661#: inc/Elements/Image_Overlay.php:68 inc/Elements/Post_Grid.php:229
    1581 #: inc/Elements/Promo-box.php:69 inc/Elements/Slider.php:63
    1582 #: inc/Elements/Staff_Member.php:72 inc/Elements/Teaser_Box.php:187
     1662#: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:63
     1663#: inc/Elements/Staff_Member.php:75 inc/Elements/Teaser_Box.php:187
    15831664#: inc/Elements/Testimonial.php:69 inc/Elements/Testimonial_Slider.php:71
    15841665msgid "Image"
     
    16141695msgstr ""
    16151696
    1616 #: inc/Elements/Image_Overlay.php:196 inc/Elements/Promo-box.php:150
     1697#: inc/Elements/Image_Overlay.php:196
    16171698msgid "Overlay Border Radius"
    16181699msgstr ""
     
    17301811msgstr ""
    17311812
    1732 #: inc/Elements/Post_Carousel.php:300 inc/Elements/Post_Grid.php:364
     1813#: inc/Elements/Post_Carousel.php:300 inc/Elements/Post_Grid.php:365
    17331814msgid "Meta Hover Color"
    17341815msgstr ""
     
    18021883msgstr ""
    18031884
    1804 #: inc/Elements/Post_Grid.php:237 inc/Elements/Staff_Member.php:302
     1885#: inc/Elements/Post_Grid.php:237 inc/Elements/Staff_Member.php:300
    18051886#: inc/Elements/Teaser_Box.php:217
    18061887msgid "Image Bottom Spacing"
    18071888msgstr ""
    18081889
    1809 #: inc/Elements/Post_Grid.php:261 inc/Elements/Staff_Member.php:290
     1890#: inc/Elements/Post_Grid.php:261 inc/Elements/Staff_Member.php:288
    18101891msgid "Image Border Radius"
    18111892msgstr ""
    18121893
    1813 #: inc/Elements/Post_Grid.php:521
     1894#: inc/Elements/Post_Grid.php:522
    18141895msgid "Blog Post Content"
    18151896msgstr ""
    18161897
    1817 #: inc/Elements/Post_Grid.php:788
     1898#: inc/Elements/Post_Grid.php:789
    18181899msgid "Posts navigation"
    18191900msgstr ""
    18201901
    1821 #: inc/Elements/Post_Grid.php:792
     1902#: inc/Elements/Post_Grid.php:793
    18221903msgid "&larr; Previous"
    18231904msgstr ""
    18241905
    1825 #: inc/Elements/Post_Grid.php:793
     1906#: inc/Elements/Post_Grid.php:794
    18261907msgid "Next &rarr;"
    18271908msgstr ""
     
    20642145msgstr ""
    20652146
    2066 #: inc/Elements/Promo-box.php:27
     2147#: inc/Elements/Promo-box.php:29
    20672148msgid "DA: Promo Box"
    20682149msgstr ""
    20692150
    2070 #: inc/Elements/Promo-box.php:60
     2151#: inc/Elements/Promo-box.php:62
    20712152msgid "Promo Box"
    20722153msgstr ""
    20732154
    2074 #: inc/Elements/Promo-box.php:79
     2155#: inc/Elements/Promo-box.php:81
    20752156msgid "Image Link"
    20762157msgstr ""
    20772158
    2078 #: inc/Elements/Promo-box.php:106 inc/Elements/Promo-box.php:107
     2159#: inc/Elements/Promo-box.php:108 inc/Elements/Promo-box.php:109
    20792160msgid "Promo Box Text"
    20802161msgstr ""
    20812162
    2082 #: inc/Elements/Promo-box.php:114
     2163#: inc/Elements/Promo-box.php:116
    20832164msgid "Show/Hide Overlay Text"
    20842165msgstr ""
    20852166
    2086 #: inc/Elements/Promo-box.php:132
    2087 msgid "Overlay Border Style"
    2088 msgstr ""
    2089 
    2090 #: inc/Elements/Promo-box.php:166
     2167#: inc/Elements/Promo-box.php:142
     2168msgid "Overlay Design"
     2169msgstr ""
     2170
     2171#: inc/Elements/Promo-box.php:147
     2172msgid "Default"
     2173msgstr ""
     2174
     2175#: inc/Elements/Promo-box.php:148
     2176msgid "Corner"
     2177msgstr ""
     2178
     2179#: inc/Elements/Promo-box.php:201
     2180msgid "Overlay Box Shadow"
     2181msgstr ""
     2182
     2183#: inc/Elements/Promo-box.php:213
    20912184msgid "Overlay Text & Background"
     2185msgstr ""
     2186
     2187#: inc/Elements/Promo-box.php:264 inc/Elements/Testimonial_Slider.php:241
     2188msgid "Container Style"
    20922189msgstr ""
    20932190
     
    21922289msgstr ""
    21932290
    2194 #: inc/Elements/Slider.php:280
    2195 msgid "Overlay Padding"
    2196 msgstr ""
    2197 
    21982291#: inc/Elements/Slider.php:439
    21992292msgid "Navigation Border Radius"
     
    22212314
    22222315#: inc/Elements/Social_Icon.php:53 inc/Elements/Social_Icon.php:243
    2223 #: inc/Elements/Staff_Member.php:137
     2316#: inc/Elements/Staff_Member.php:140
    22242317msgid "Social Icons"
    22252318msgstr ""
     
    22502343msgstr ""
    22512344
    2252 #: inc/Elements/Social_Icon.php:168 inc/Elements/Social_Icon.php:215
    2253 #: inc/Elements/Social_Icon.php:319 inc/Elements/Social_Icon.php:403
    2254 #: inc/Elements/Social_Icon.php:451
    2255 msgid "Background Color"
    2256 msgstr ""
    2257 
    22582345#: inc/Elements/Social_Icon.php:182 inc/Elements/Social_Icon.php:227
    22592346#: inc/Elements/Social_Icon.php:419 inc/Elements/Social_Icon.php:463
     
    22692356msgstr ""
    22702357
    2271 #: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:161
    2272 #: inc/Elements/Staff_Member.php:455
     2358#: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:164
     2359#: inc/Elements/Staff_Member.php:513
    22732360msgid "Social Icon"
    22742361msgstr ""
     
    22942381msgstr ""
    22952382
    2296 #: inc/Elements/Staff_Member.php:27
     2383#: inc/Elements/Staff_Member.php:30
    22972384msgid "DA: Staff Member"
    22982385msgstr ""
    22992386
    2300 #: inc/Elements/Staff_Member.php:61
     2387#: inc/Elements/Staff_Member.php:64
    23012388msgid "Staff Member"
    23022389msgstr ""
    23032390
    2304 #: inc/Elements/Staff_Member.php:82
     2391#: inc/Elements/Staff_Member.php:85
    23052392msgid "Image Width(%)"
    23062393msgstr ""
    23072394
    2308 #: inc/Elements/Staff_Member.php:106
     2395#: inc/Elements/Staff_Member.php:109
    23092396msgid "Name"
    23102397msgstr ""
    23112398
    2312 #: inc/Elements/Staff_Member.php:117
     2399#: inc/Elements/Staff_Member.php:120
    23132400msgid "Job Position"
    23142401msgstr ""
    23152402
    2316 #: inc/Elements/Staff_Member.php:118
     2403#: inc/Elements/Staff_Member.php:121
    23172404msgid "Developer"
    23182405msgstr ""
    23192406
    2320 #: inc/Elements/Staff_Member.php:128
     2407#: inc/Elements/Staff_Member.php:131
    23212408msgid "About Staff Member"
    23222409msgstr ""
    23232410
    2324 #: inc/Elements/Staff_Member.php:129
     2411#: inc/Elements/Staff_Member.php:132
    23252412msgid ""
    23262413"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
     
    23282415msgstr ""
    23292416
    2330 #: inc/Elements/Staff_Member.php:145
     2417#: inc/Elements/Staff_Member.php:148
    23312418msgid "Social Icons Show/Hide"
    23322419msgstr ""
    23332420
    2334 #: inc/Elements/Staff_Member.php:175
     2421#: inc/Elements/Staff_Member.php:178
    23352422msgid "Social Icon Link"
    23362423msgstr ""
    23372424
    2338 #: inc/Elements/Staff_Member.php:220
     2425#: inc/Elements/Staff_Member.php:223
    23392426msgid "Staff Member Item Style"
    23402427msgstr ""
    23412428
    2342 #: inc/Elements/Staff_Member.php:272
     2429#: inc/Elements/Staff_Member.php:261
    23432430msgid "Staff Member Image"
    23442431msgstr ""
    23452432
    2346 #: inc/Elements/Staff_Member.php:321
     2433#: inc/Elements/Staff_Member.php:277
     2434msgid "Image Border Hover Color"
     2435msgstr ""
     2436
     2437#: inc/Elements/Staff_Member.php:319
    23472438msgid "Staff Member Name"
    23482439msgstr ""
    23492440
    2350 #: inc/Elements/Staff_Member.php:330
     2441#: inc/Elements/Staff_Member.php:328
    23512442msgid "Name Bottom Spacing"
    23522443msgstr ""
    23532444
    2354 #: inc/Elements/Staff_Member.php:345
     2445#: inc/Elements/Staff_Member.php:343
    23552446msgid "Name Color"
    23562447msgstr ""
    23572448
    2358 #: inc/Elements/Staff_Member.php:366
     2449#: inc/Elements/Staff_Member.php:355
     2450msgid "Name Hover Color"
     2451msgstr ""
     2452
     2453#: inc/Elements/Staff_Member.php:396
    23592454msgid "Staff Member Job Position"
    23602455msgstr ""
    23612456
    2362 #: inc/Elements/Staff_Member.php:374
     2457#: inc/Elements/Staff_Member.php:404
    23632458msgid "Job Position Bottom Spacing"
    23642459msgstr ""
    23652460
    2366 #: inc/Elements/Staff_Member.php:413
     2461#: inc/Elements/Staff_Member.php:419
     2462msgid "Job Position Color"
     2463msgstr ""
     2464
     2465#: inc/Elements/Staff_Member.php:429
     2466msgid "Job Position Hover Color"
     2467msgstr ""
     2468
     2469#: inc/Elements/Staff_Member.php:471
    23672470msgid "Staff Member Text"
    23682471msgstr ""
    23692472
    2370 #: inc/Elements/Staff_Member.php:422
     2473#: inc/Elements/Staff_Member.php:480
    23712474msgid "Text Bottom Padding"
    23722475msgstr ""
    23732476
    2374 #: inc/Elements/Staff_Member.php:627
    2375 msgid "Staff Member Content"
     2477#: inc/Elements/Staff_Member.php:650
     2478msgid "Icon Border Hover Color"
     2479msgstr ""
     2480
     2481#: inc/Elements/Staff_Member.php:692
     2482msgid "Staff Member Container"
    23762483msgstr ""
    23772484
     
    24552562#: inc/Elements/Tabs.php:237
    24562563msgid "Tab Title"
    2457 msgstr ""
    2458 
    2459 #: inc/Elements/Tabs.php:321
    2460 msgid "Icon Before Title"
    24612564msgstr ""
    24622565
     
    25772680msgstr ""
    25782681
     2682#: inc/Elements/Testimonial.php:173 inc/Elements/Testimonial_Slider.php:272
     2683msgid "Background Shadow Style"
     2684msgstr ""
     2685
     2686#: inc/Elements/Testimonial.php:177 inc/Elements/Testimonial_Slider.php:276
     2687#: inc/Reuses/Reuse.php:352
     2688msgid "None"
     2689msgstr ""
     2690
     2691#: inc/Elements/Testimonial.php:178 inc/Elements/Testimonial_Slider.php:277
     2692msgid "Style1"
     2693msgstr ""
     2694
     2695#: inc/Elements/Testimonial.php:179 inc/Elements/Testimonial_Slider.php:278
     2696msgid "Style2"
     2697msgstr ""
     2698
     2699#: inc/Elements/Testimonial.php:180 inc/Elements/Testimonial_Slider.php:279
     2700msgid "Style3"
     2701msgstr ""
     2702
    25792703#: inc/Elements/Testimonial.php:191 inc/Elements/Testimonial_Slider.php:290
    25802704msgid "Reviewer Image"
     
    26232747#: inc/Elements/Testimonial_Slider.php:163
    26242748msgid "Default:1"
    2625 msgstr ""
    2626 
    2627 #: inc/Elements/Testimonial_Slider.php:241
    2628 msgid "Container Style"
    26292749msgstr ""
    26302750
     
    28552975msgstr ""
    28562976
    2857 #: inc/Elements/heading-with-separator.php:29
     2977#: inc/Elements/heading-with-separator.php:31
    28582978msgid "DA: Heading with Separator"
    28592979msgstr ""
    28602980
    2861 #: inc/Elements/heading-with-separator.php:59
     2981#: inc/Elements/heading-with-separator.php:61
    28622982msgid "Heading with Separator"
    28632983msgstr ""
    28642984
    2865 #: inc/Elements/heading-with-separator.php:69
     2985#: inc/Elements/heading-with-separator.php:71
    28662986msgid "Heading Text"
    28672987msgstr ""
    28682988
    2869 #: inc/Elements/heading-with-separator.php:70
     2989#: inc/Elements/heading-with-separator.php:72
    28702990msgid "I am heading or text"
    28712991msgstr ""
    28722992
    2873 #: inc/Elements/heading-with-separator.php:94
     2993#: inc/Elements/heading-with-separator.php:96
    28742994msgid "Show/Hide Separator"
    28752995msgstr ""
    28762996
    2877 #: inc/Elements/heading-with-separator.php:138
     2997#: inc/Elements/heading-with-separator.php:139
    28782998msgid "Heading"
    28792999msgstr ""
    28803000
    2881 #: inc/Elements/heading-with-separator.php:194
     3001#: inc/Elements/heading-with-separator.php:196
     3002msgid "Title Background Hover Color"
     3003msgstr ""
     3004
     3005#: inc/Elements/heading-with-separator.php:250
    28823006msgid "Heading Separator"
    28833007msgstr ""
    28843008
    2885 #: inc/Elements/heading-with-separator.php:201
     3009#: inc/Elements/heading-with-separator.php:257
    28863010msgid "separator Color"
    28873011msgstr ""
    28883012
    2889 #: inc/Elements/heading-with-separator.php:213
     3013#: inc/Elements/heading-with-separator.php:269
     3014msgid "Separator Hover Color"
     3015msgstr ""
     3016
     3017#: inc/Elements/heading-with-separator.php:281
    28903018msgid "Separator Width"
    28913019msgstr ""
    28923020
    2893 #: inc/Elements/heading-with-separator.php:228
     3021#: inc/Elements/heading-with-separator.php:296
    28943022msgid "Separator Height"
    28953023msgstr ""
    28963024
    2897 #: inc/Elements/heading-with-separator.php:245
     3025#: inc/Elements/heading-with-separator.php:311
    28983026msgid "Separator Bottom Spacing"
    28993027msgstr ""
    29003028
    2901 #: inc/Reuses/Reuse.php:30
     3029#: inc/Reuses/Reuse.php:27
    29023030#, php-format
    29033031msgid "Continue reading %s"
    29043032msgstr ""
    29053033
    2906 #: inc/Reuses/Reuse.php:130 inc/Reuses/Reuse.php:154
     3034#: inc/Reuses/Reuse.php:110 inc/Reuses/Reuse.php:134
    29073035#, php-format
    29083036msgid "By %s"
    29093037msgstr ""
    29103038
    2911 #: inc/Reuses/Reuse.php:175 inc/Reuses/Reuse.php:195 inc/Reuses/Reuse.php:214
     3039#: inc/Reuses/Reuse.php:155 inc/Reuses/Reuse.php:175 inc/Reuses/Reuse.php:194
    29123040msgid "No Form found. Create New form "
    29133041msgstr ""
    29143042
    2915 #: inc/Reuses/Reuse.php:176 inc/Reuses/Reuse.php:215
     3043#: inc/Reuses/Reuse.php:156 inc/Reuses/Reuse.php:195
    29163044msgid "Click here"
    29173045msgstr ""
    29183046
     3047#: inc/Reuses/Reuse.php:204
     3048msgid "500px"
     3049msgstr ""
     3050
     3051#: inc/Reuses/Reuse.php:205
     3052msgid "android"
     3053msgstr ""
     3054
     3055#: inc/Reuses/Reuse.php:206
     3056msgid "apple"
     3057msgstr ""
     3058
     3059#: inc/Reuses/Reuse.php:207
     3060msgid "behance"
     3061msgstr ""
     3062
     3063#: inc/Reuses/Reuse.php:208
     3064msgid "bitbucket"
     3065msgstr ""
     3066
     3067#: inc/Reuses/Reuse.php:209
     3068msgid "codepen"
     3069msgstr ""
     3070
     3071#: inc/Reuses/Reuse.php:210
     3072msgid "delicious"
     3073msgstr ""
     3074
     3075#: inc/Reuses/Reuse.php:211
     3076msgid "deviantart"
     3077msgstr ""
     3078
     3079#: inc/Reuses/Reuse.php:212
     3080msgid "digg"
     3081msgstr ""
     3082
     3083#: inc/Reuses/Reuse.php:213
     3084msgid "dribbble"
     3085msgstr ""
     3086
     3087#: inc/Reuses/Reuse.php:215
     3088msgid "facebook"
     3089msgstr ""
     3090
     3091#: inc/Reuses/Reuse.php:216
     3092msgid "flickr"
     3093msgstr ""
     3094
     3095#: inc/Reuses/Reuse.php:217
     3096msgid "foursquare"
     3097msgstr ""
     3098
     3099#: inc/Reuses/Reuse.php:219
     3100msgid "github"
     3101msgstr ""
     3102
     3103#: inc/Reuses/Reuse.php:221
     3104msgid "globe"
     3105msgstr ""
     3106
     3107#: inc/Reuses/Reuse.php:222
     3108msgid "google-plus"
     3109msgstr ""
     3110
     3111#: inc/Reuses/Reuse.php:223
     3112msgid "houzz"
     3113msgstr ""
     3114
     3115#: inc/Reuses/Reuse.php:224
     3116msgid "instagram"
     3117msgstr ""
     3118
     3119#: inc/Reuses/Reuse.php:225
     3120msgid "jsfiddle"
     3121msgstr ""
     3122
     3123#: inc/Reuses/Reuse.php:226
     3124msgid "linkedin"
     3125msgstr ""
     3126
     3127#: inc/Reuses/Reuse.php:227
     3128msgid "medium"
     3129msgstr ""
     3130
     3131#: inc/Reuses/Reuse.php:228
     3132msgid "meetup"
     3133msgstr ""
     3134
     3135#: inc/Reuses/Reuse.php:229
     3136msgid "mixcloud"
     3137msgstr ""
     3138
     3139#: inc/Reuses/Reuse.php:231
     3140msgid "pinterest"
     3141msgstr ""
     3142
     3143#: inc/Reuses/Reuse.php:232
     3144msgid "product-hunt"
     3145msgstr ""
     3146
     3147#: inc/Reuses/Reuse.php:233
     3148msgid "reddit"
     3149msgstr ""
     3150
     3151#: inc/Reuses/Reuse.php:234
     3152msgid "shopping-cart"
     3153msgstr ""
     3154
     3155#: inc/Reuses/Reuse.php:235
     3156msgid "skype"
     3157msgstr ""
     3158
     3159#: inc/Reuses/Reuse.php:236
     3160msgid "slideshare"
     3161msgstr ""
     3162
     3163#: inc/Reuses/Reuse.php:237
     3164msgid "snapchat"
     3165msgstr ""
     3166
     3167#: inc/Reuses/Reuse.php:238
     3168msgid "soundcloud"
     3169msgstr ""
     3170
     3171#: inc/Reuses/Reuse.php:239
     3172msgid "spotify"
     3173msgstr ""
     3174
     3175#: inc/Reuses/Reuse.php:241
     3176msgid "steam"
     3177msgstr ""
     3178
     3179#: inc/Reuses/Reuse.php:242
     3180msgid "stumbleupon"
     3181msgstr ""
     3182
     3183#: inc/Reuses/Reuse.php:243
     3184msgid "telegram"
     3185msgstr ""
     3186
     3187#: inc/Reuses/Reuse.php:244
     3188msgid "thumb-tack"
     3189msgstr ""
     3190
     3191#: inc/Reuses/Reuse.php:245
     3192msgid "tripadvisor"
     3193msgstr ""
     3194
     3195#: inc/Reuses/Reuse.php:246
     3196msgid "tumblr"
     3197msgstr ""
     3198
     3199#: inc/Reuses/Reuse.php:247
     3200msgid "twitch"
     3201msgstr ""
     3202
     3203#: inc/Reuses/Reuse.php:248
     3204msgid "twitter"
     3205msgstr ""
     3206
     3207#: inc/Reuses/Reuse.php:249
     3208msgid "viber"
     3209msgstr ""
     3210
     3211#: inc/Reuses/Reuse.php:250
     3212msgid "vimeo"
     3213msgstr ""
     3214
     3215#: inc/Reuses/Reuse.php:251
     3216msgid "vk"
     3217msgstr ""
     3218
     3219#: inc/Reuses/Reuse.php:252
     3220msgid "weibo"
     3221msgstr ""
     3222
     3223#: inc/Reuses/Reuse.php:253
     3224msgid "weixin"
     3225msgstr ""
     3226
     3227#: inc/Reuses/Reuse.php:254
     3228msgid "whatsapp"
     3229msgstr ""
     3230
     3231#: inc/Reuses/Reuse.php:255
     3232msgid "wordpress"
     3233msgstr ""
     3234
     3235#: inc/Reuses/Reuse.php:256
     3236msgid "xing"
     3237msgstr ""
     3238
     3239#: inc/Reuses/Reuse.php:257
     3240msgid "yelp"
     3241msgstr ""
     3242
     3243#: inc/Reuses/Reuse.php:258
     3244msgid "youtube"
     3245msgstr ""
     3246
     3247#: inc/Reuses/Reuse.php:260
     3248msgid "cc-amex"
     3249msgstr ""
     3250
     3251#: inc/Reuses/Reuse.php:261
     3252msgid "cc-mastercard"
     3253msgstr ""
     3254
     3255#: inc/Reuses/Reuse.php:262
     3256msgid "cc-paypal"
     3257msgstr ""
     3258
     3259#: inc/Reuses/Reuse.php:263
     3260msgid "cc-stripe"
     3261msgstr ""
     3262
     3263#: inc/Reuses/Reuse.php:264
     3264msgid "cc-visa"
     3265msgstr ""
     3266
     3267#: inc/Reuses/Reuse.php:265
     3268msgid "credit-card"
     3269msgstr ""
     3270
     3271#: inc/Reuses/Reuse.php:266
     3272msgid "google-wallet"
     3273msgstr ""
     3274
     3275#: inc/Reuses/Reuse.php:267
     3276msgid "paypal"
     3277msgstr ""
     3278
     3279#: inc/Reuses/Reuse.php:268
     3280msgid "cc-discover"
     3281msgstr ""
     3282
     3283#: inc/Reuses/Reuse.php:269
     3284msgid "cc-jcb"
     3285msgstr ""
     3286
     3287#: inc/Reuses/Reuse.php:275
     3288msgid "none"
     3289msgstr ""
     3290
     3291#: inc/Reuses/Reuse.php:276
     3292msgid "bounce"
     3293msgstr ""
     3294
     3295#: inc/Reuses/Reuse.php:277
     3296msgid "flash"
     3297msgstr ""
     3298
     3299#: inc/Reuses/Reuse.php:278
     3300msgid "pulse"
     3301msgstr ""
     3302
     3303#: inc/Reuses/Reuse.php:279
     3304msgid "rubberBand"
     3305msgstr ""
     3306
     3307#: inc/Reuses/Reuse.php:280
     3308msgid "shake"
     3309msgstr ""
     3310
     3311#: inc/Reuses/Reuse.php:281
     3312msgid "headShake"
     3313msgstr ""
     3314
     3315#: inc/Reuses/Reuse.php:282
     3316msgid "swing"
     3317msgstr ""
     3318
     3319#: inc/Reuses/Reuse.php:283
     3320msgid "tada"
     3321msgstr ""
     3322
     3323#: inc/Reuses/Reuse.php:284
     3324msgid "wobble"
     3325msgstr ""
     3326
     3327#: inc/Reuses/Reuse.php:285
     3328msgid "jello"
     3329msgstr ""
     3330
     3331#: inc/Reuses/Reuse.php:286
     3332msgid "bounceIn"
     3333msgstr ""
     3334
     3335#: inc/Reuses/Reuse.php:287
     3336msgid "bounceInDown"
     3337msgstr ""
     3338
     3339#: inc/Reuses/Reuse.php:288 inc/Reuses/Reuse.php:289
     3340msgid "bounceInLeft"
     3341msgstr ""
     3342
     3343#: inc/Reuses/Reuse.php:290
     3344msgid "bounceInUp"
     3345msgstr ""
     3346
     3347#: inc/Reuses/Reuse.php:291
     3348msgid "bounceOut"
     3349msgstr ""
     3350
     3351#: inc/Reuses/Reuse.php:292
     3352msgid "bounceOutDown"
     3353msgstr ""
     3354
     3355#: inc/Reuses/Reuse.php:293
     3356msgid "bounceOutLeft"
     3357msgstr ""
     3358
     3359#: inc/Reuses/Reuse.php:294
     3360msgid "bounceOutRight"
     3361msgstr ""
     3362
    29193363#: inc/Reuses/Reuse.php:295
    2920 msgid "none"
     3364msgid "bounceOutUp"
    29213365msgstr ""
    29223366
    29233367#: inc/Reuses/Reuse.php:296
    2924 msgid "bounce"
     3368msgid "fadeIn"
    29253369msgstr ""
    29263370
    29273371#: inc/Reuses/Reuse.php:297
    2928 msgid "flash"
     3372msgid "fadeInDown"
    29293373msgstr ""
    29303374
    29313375#: inc/Reuses/Reuse.php:298
    2932 msgid "pulse"
     3376msgid "fadeInDownBig"
    29333377msgstr ""
    29343378
    29353379#: inc/Reuses/Reuse.php:299
    2936 msgid "rubberBand"
     3380msgid "fadeInLeft"
    29373381msgstr ""
    29383382
    29393383#: inc/Reuses/Reuse.php:300
    2940 msgid "shake"
     3384msgid "fadeInLeftBig"
    29413385msgstr ""
    29423386
    29433387#: inc/Reuses/Reuse.php:301
    2944 msgid "headShake"
     3388msgid "fadeInRight"
    29453389msgstr ""
    29463390
    29473391#: inc/Reuses/Reuse.php:302
    2948 msgid "swing"
     3392msgid "fadeInRightBig"
    29493393msgstr ""
    29503394
    29513395#: inc/Reuses/Reuse.php:303
    2952 msgid "tada"
     3396msgid "fadeInUp"
    29533397msgstr ""
    29543398
    29553399#: inc/Reuses/Reuse.php:304
    2956 msgid "wobble"
     3400msgid "fadeInUpBig"
    29573401msgstr ""
    29583402
    29593403#: inc/Reuses/Reuse.php:305
    2960 msgid "jello"
     3404msgid "fadeOut"
    29613405msgstr ""
    29623406
    29633407#: inc/Reuses/Reuse.php:306
    2964 msgid "bounceIn"
     3408msgid "fadeOutDown"
    29653409msgstr ""
    29663410
    29673411#: inc/Reuses/Reuse.php:307
    2968 msgid "bounceInDown"
    2969 msgstr ""
    2970 
    2971 #: inc/Reuses/Reuse.php:308 inc/Reuses/Reuse.php:309
    2972 msgid "bounceInLeft"
     3412msgid "fadeOutDownBig"
     3413msgstr ""
     3414
     3415#: inc/Reuses/Reuse.php:308
     3416msgid "fadeOutLeft"
     3417msgstr ""
     3418
     3419#: inc/Reuses/Reuse.php:309
     3420msgid "fadeOutLeftBig"
    29733421msgstr ""
    29743422
    29753423#: inc/Reuses/Reuse.php:310
    2976 msgid "bounceInUp"
     3424msgid "fadeOutRight"
    29773425msgstr ""
    29783426
    29793427#: inc/Reuses/Reuse.php:311
    2980 msgid "bounceOut"
     3428msgid "fadeOutRightBig"
    29813429msgstr ""
    29823430
    29833431#: inc/Reuses/Reuse.php:312
    2984 msgid "bounceOutDown"
     3432msgid "fadeOutUp"
    29853433msgstr ""
    29863434
    29873435#: inc/Reuses/Reuse.php:313
    2988 msgid "bounceOutLeft"
     3436msgid "fadeOutUpBig"
    29893437msgstr ""
    29903438
    29913439#: inc/Reuses/Reuse.php:314
    2992 msgid "bounceOutRight"
     3440msgid "flipInX"
    29933441msgstr ""
    29943442
    29953443#: inc/Reuses/Reuse.php:315
    2996 msgid "bounceOutUp"
     3444msgid "flipInY"
    29973445msgstr ""
    29983446
    29993447#: inc/Reuses/Reuse.php:316
    3000 msgid "fadeIn"
     3448msgid "flipOutX"
    30013449msgstr ""
    30023450
    30033451#: inc/Reuses/Reuse.php:317
    3004 msgid "fadeInDown"
     3452msgid "flipOutY"
    30053453msgstr ""
    30063454
    30073455#: inc/Reuses/Reuse.php:318
    3008 msgid "fadeInDownBig"
     3456msgid "lightSpeedIn"
    30093457msgstr ""
    30103458
    30113459#: inc/Reuses/Reuse.php:319
    3012 msgid "fadeInLeft"
     3460msgid "lightSpeedOut"
    30133461msgstr ""
    30143462
    30153463#: inc/Reuses/Reuse.php:320
    3016 msgid "fadeInLeftBig"
     3464msgid "rotateIn"
    30173465msgstr ""
    30183466
    30193467#: inc/Reuses/Reuse.php:321
    3020 msgid "fadeInRight"
     3468msgid "rotateInDownLeft"
    30213469msgstr ""
    30223470
    30233471#: inc/Reuses/Reuse.php:322
    3024 msgid "fadeInRightBig"
     3472msgid "rotateInDownRight"
    30253473msgstr ""
    30263474
    30273475#: inc/Reuses/Reuse.php:323
    3028 msgid "fadeInUp"
     3476msgid "rotateInUpLeft"
    30293477msgstr ""
    30303478
    30313479#: inc/Reuses/Reuse.php:324
    3032 msgid "fadeInUpBig"
     3480msgid "rotateInUpRight"
    30333481msgstr ""
    30343482
    30353483#: inc/Reuses/Reuse.php:325
    3036 msgid "fadeOut"
     3484msgid "rotateOut"
    30373485msgstr ""
    30383486
    30393487#: inc/Reuses/Reuse.php:326
    3040 msgid "fadeOutDown"
     3488msgid "rotateOutDownLeft"
    30413489msgstr ""
    30423490
    30433491#: inc/Reuses/Reuse.php:327
    3044 msgid "fadeOutDownBig"
     3492msgid "rotateOutDownRight"
    30453493msgstr ""
    30463494
    30473495#: inc/Reuses/Reuse.php:328
    3048 msgid "fadeOutLeft"
     3496msgid "rotateOutUpLeft"
    30493497msgstr ""
    30503498
    30513499#: inc/Reuses/Reuse.php:329
    3052 msgid "fadeOutLeftBig"
     3500msgid "rotateOutUpRight"
    30533501msgstr ""
    30543502
    30553503#: inc/Reuses/Reuse.php:330
    3056 msgid "fadeOutRight"
     3504msgid "hinge"
    30573505msgstr ""
    30583506
    30593507#: inc/Reuses/Reuse.php:331
    3060 msgid "fadeOutRightBig"
     3508msgid "jackInTheBox"
    30613509msgstr ""
    30623510
    30633511#: inc/Reuses/Reuse.php:332
    3064 msgid "fadeOutUp"
     3512msgid "rollIn"
    30653513msgstr ""
    30663514
    30673515#: inc/Reuses/Reuse.php:333
    3068 msgid "fadeOutUpBig"
     3516msgid "rollOut"
    30693517msgstr ""
    30703518
    30713519#: inc/Reuses/Reuse.php:334
    3072 msgid "flipInX"
     3520msgid "zoomIn"
    30733521msgstr ""
    30743522
    30753523#: inc/Reuses/Reuse.php:335
    3076 msgid "flipInY"
     3524msgid "zoomInDown"
    30773525msgstr ""
    30783526
    30793527#: inc/Reuses/Reuse.php:336
    3080 msgid "flipOutX"
     3528msgid "zoomInLeft"
    30813529msgstr ""
    30823530
    30833531#: inc/Reuses/Reuse.php:337
    3084 msgid "flipOutY"
     3532msgid "zoomInRight"
    30853533msgstr ""
    30863534
    30873535#: inc/Reuses/Reuse.php:338
    3088 msgid "lightSpeedIn"
     3536msgid "zoomInUp"
    30893537msgstr ""
    30903538
    30913539#: inc/Reuses/Reuse.php:339
    3092 msgid "lightSpeedOut"
     3540msgid "zoomOut"
    30933541msgstr ""
    30943542
    30953543#: inc/Reuses/Reuse.php:340
    3096 msgid "rotateIn"
     3544msgid "zoomOutDown"
    30973545msgstr ""
    30983546
    30993547#: inc/Reuses/Reuse.php:341
    3100 msgid "rotateInDownLeft"
     3548msgid "zoomOutLeft"
    31013549msgstr ""
    31023550
    31033551#: inc/Reuses/Reuse.php:342
    3104 msgid "rotateInDownRight"
     3552msgid "zoomOutRight"
    31053553msgstr ""
    31063554
    31073555#: inc/Reuses/Reuse.php:343
    3108 msgid "rotateInUpLeft"
     3556msgid "zoomOutUp"
    31093557msgstr ""
    31103558
    31113559#: inc/Reuses/Reuse.php:344
    3112 msgid "rotateInUpRight"
     3560msgid "slideInDown"
    31133561msgstr ""
    31143562
    31153563#: inc/Reuses/Reuse.php:345
    3116 msgid "rotateOut"
     3564msgid "slideInLeft"
    31173565msgstr ""
    31183566
    31193567#: inc/Reuses/Reuse.php:346
    3120 msgid "rotateOutDownLeft"
     3568msgid "slideInRight"
    31213569msgstr ""
    31223570
    31233571#: inc/Reuses/Reuse.php:347
    3124 msgid "rotateOutDownRight"
     3572msgid "slideInUp"
    31253573msgstr ""
    31263574
    31273575#: inc/Reuses/Reuse.php:348
    3128 msgid "rotateOutUpLeft"
     3576msgid "slideOutDown"
    31293577msgstr ""
    31303578
    31313579#: inc/Reuses/Reuse.php:349
    3132 msgid "rotateOutUpRight"
     3580msgid "slideOutLeft"
    31333581msgstr ""
    31343582
    31353583#: inc/Reuses/Reuse.php:350
    3136 msgid "hinge"
     3584msgid "slideOutRight"
    31373585msgstr ""
    31383586
    31393587#: inc/Reuses/Reuse.php:351
    3140 msgid "jackInTheBox"
    3141 msgstr ""
    3142 
    3143 #: inc/Reuses/Reuse.php:352
    3144 msgid "rollIn"
    3145 msgstr ""
    3146 
    3147 #: inc/Reuses/Reuse.php:353
    3148 msgid "rollOut"
    3149 msgstr ""
    3150 
    3151 #: inc/Reuses/Reuse.php:354
    3152 msgid "zoomIn"
    3153 msgstr ""
    3154 
    3155 #: inc/Reuses/Reuse.php:355
    3156 msgid "zoomInDown"
    3157 msgstr ""
    3158 
    3159 #: inc/Reuses/Reuse.php:356
    3160 msgid "zoomInLeft"
    3161 msgstr ""
    3162 
    3163 #: inc/Reuses/Reuse.php:357
    3164 msgid "zoomInRight"
    3165 msgstr ""
    3166 
    3167 #: inc/Reuses/Reuse.php:358
    3168 msgid "zoomInUp"
    3169 msgstr ""
    3170 
    3171 #: inc/Reuses/Reuse.php:359
    3172 msgid "zoomOut"
    3173 msgstr ""
    3174 
    3175 #: inc/Reuses/Reuse.php:360
    3176 msgid "zoomOutDown"
    3177 msgstr ""
    3178 
    3179 #: inc/Reuses/Reuse.php:361
    3180 msgid "zoomOutLeft"
    3181 msgstr ""
    3182 
    3183 #: inc/Reuses/Reuse.php:362
    3184 msgid "zoomOutRight"
    3185 msgstr ""
    3186 
    3187 #: inc/Reuses/Reuse.php:363
    3188 msgid "zoomOutUp"
    3189 msgstr ""
    3190 
    3191 #: inc/Reuses/Reuse.php:364
    3192 msgid "slideInDown"
    3193 msgstr ""
    3194 
    3195 #: inc/Reuses/Reuse.php:365
    3196 msgid "slideInLeft"
    3197 msgstr ""
    3198 
    3199 #: inc/Reuses/Reuse.php:366
    3200 msgid "slideInRight"
    3201 msgstr ""
    3202 
    3203 #: inc/Reuses/Reuse.php:367
    3204 msgid "slideInUp"
    3205 msgstr ""
    3206 
    3207 #: inc/Reuses/Reuse.php:368
    3208 msgid "slideOutDown"
    3209 msgstr ""
    3210 
    3211 #: inc/Reuses/Reuse.php:369
    3212 msgid "slideOutLeft"
    3213 msgstr ""
    3214 
    3215 #: inc/Reuses/Reuse.php:370
    3216 msgid "slideOutRight"
    3217 msgstr ""
    3218 
    3219 #: inc/Reuses/Reuse.php:371
    32203588msgid "slideOutUp"
    32213589msgstr ""
  • definitive-addons-for-elementor/trunk/readme.txt

    r2681173 r2686404  
    55Tested up to: 5.9
    66Requires PHP: 5.4
    7 Stable tag: 1.4.15
    8 Version: 1.4.15
     7Stable tag: 1.4.16
     8Version: 1.4.16
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2020Definitive addons for elementor can be used with any WordPress theme. It turns a simple theme into gorgeous website. Try with your theme to create unique website. All necessary elements are included to create complete website without coding skill. This plugin best suited with all popular WordPress theme. You can create blog, e-commerce and business website with Definitive Addons.
    2121
    22 <div>
    23 <a href="https://themenextlevel.com/the-gap/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>THE GAP DEMOS</strong></a>
    24 </div>
    25 <div>
    26 <a href="https://themenextlevel.com/million-shades/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>MILLION SHADES DEMOS</strong></a>
    27 </div>
    28 <div>
    29 <a href="https://softfirm.net/popular-theme-demos/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>POPULAR THEME DEMOS</strong></a>
    30 </div>
    31 
    32 
    33 
    3422### 33 FREE WIDGETS
    3523
    3624<ul>
     25<li><a  target="_blank" href="https://softfirm.net/filterable-post-portfolio/">Filterable Post/Portfolio</a> - Demos & Documentation</li>
    3726<li><a target="_blank" href="https://softfirm.net/icon-box/">Icon Box</a> - Demos & Documentation</li>
    3827<li><a  target="_blank" href="https://softfirm.net/image-slider/">Image Slider</a> - Demos & Documentation</li>
     
    4433<li><a  target="_blank" href="https://softfirm.net/counter/">Counter</a> - Demos & Documentation</li>
    4534<li><a  target="_blank" href="https://softfirm.net/heading/">Heading with Separator</a> - Demos & Documentation</li>
    46 <li><a  target="_blank" href="https://the-gap-docs.themenextlevel.com/subscription/">Subscription</a> - Demos & Documentation</li>
     35<li><a  target="_blank" href="https://softfirm.net/subscription/">Subscription</a> - Demos & Documentation</li>
    4736<li><a  target="_blank" href="https://softfirm.net/feature-list/">Feature List</a> - Demos & Documentation</li>
    4837<li><a  target="_blank" href="https://softfirm.net/testimonial-carousel">Testimonial Slider/Testimonial Carouse</a> - Demos & Documentation</li>
     
    6756<li><a  target="_blank" href="https://softfirm.net/tabs/">Tabs</a> - Demos & Documentation</li>
    6857<li><a  target="_blank" href="https://softfirm.net/social-icons/">Social Icon</a> - Demos & Documentation</li>
    69 <li><a  target="_blank" href="https://softfirm.net/filterable-post-portfolio/">Filterable Post/Portfolio</a> - Demos & Documentation</li>
    7058
    7159</ul>
     60
     61<div>
     62<a href="https://themenextlevel.com/the-gap/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>THE GAP DEMOS</strong></a>
     63</div>
     64<div>
     65<a href="https://themenextlevel.com/million-shades/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>MILLION SHADES DEMOS</strong></a>
     66</div>
     67<div>
     68<a href="https://softfirm.net/popular-theme-demos/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>POPULAR THEME DEMOS</strong></a>
     69</div>
    7270
    7371== Installation ==
     
    102100== Changelog ==
    103101
     102= 1.4.16 =
     103many elements modified
     104css file  modified
     105reuse.php modified
     106
    104107= 1.4.15 =
    105108icon  issue fixed as other popular theme can use this plugin
    106109js file modified
    107110css file  modified
    108 Quick view function removed
    109111
    110112= 1.4.14 =
Note: See TracChangeset for help on using the changeset viewer.