File "layout-2.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/nd-shortcodes/shortcodes/custom/cf7/layout/layout-2.php
File size: 1.74 KB
MIME-type: text/x-php
Charset: utf-8

<?php
  

//START if checkbox field full width
  if ( $nd_options_fields_full_width == 1 ) {


    $nd_options_style = '

    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="text"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="email"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="url"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="tel"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="number"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="date"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="checkbox"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' input[type="file"],
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' textarea,
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' label,
    #nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].' select
    {

      width: 100%;

    }


    .nd_options_customizer_forms span.wpcf7-not-valid-tip,
    .nd_options_customizer_forms .wpcf7-response-output.wpcf7-validation-errors,
    .nd_options_customizer_forms .wpcf7-response-output.wpcf7-mail-sent-ok
    {

      float: left;
      width: 100%;
      box-sizing: border-box;

    }

    ';
    wp_add_inline_style('nd_options_cf7_style',$nd_options_style);


    $str .= '';

  }
  //END if checkbox field full width
 
  
  $str .= '

    <!--start form-->
    <div id="nd_options_shortcode_cf7_'.$atts['nd_options_cf7'].'" class="nd_options_section '.$nd_options_class.'">
      
      <div class="nd_options_section nd_options_box_sizing_border_box">
        '.do_shortcode('[contact-form-7 id="'.$atts['nd_options_cf7'].'"]').' 
      </div>  

    </div>
    <!--end form-->

   ';