/home/arranoyd/mice/wp-content/plugins/contact-form-maker/wd/templates/display_overview_welcome.php
<div id="welcome">
  <!-- display plugin video -->
  <?php if ( $wd_options->video_youtube_id ) { ?>
    <div class="wd-video_container">
      <iframe width="100%" height="400" src="//www.youtube.com/embed/<?php echo $wd_options->video_youtube_id; ?>?rel=0" frameborder="0" allowfullscreen></iframe>
    </div>
  <?php }
  else {
    if ( $wd_options->overview_welcome_image ) { ?>
      <img src="<?php echo $wd_options->overview_welcome_image; ?>" width="100%" />

    <?php }
  } ?>
  <!-- display plugin features -->
  <div class="plugin_features">
    <!-- if your plugin has a wizard-->
    <?php if ( $wd_options->plugin_wizard_link ) { ?>
      <div class="wd-tour">
        <a class="wd-tour-btn" href="<?php echo $wd_options->plugin_wizard_link; ?>"><?php _e("Run Install Wizard ", $wd_options->prefix); ?></a>
      </div>
    <?php } ?>
    <?php foreach ( $wd_options->plugin_features as $feature ) { ?>
      <h2 class="plugin_feature_title"><?php echo $feature["title"]; ?></h2>
      <div class="plugin_feature_description"><?php echo $feature["description"]; ?></div>
    <?php } ?>
    <div class="more_features_wrap">
      <a href="<?php echo $wd_options->plugin_wd_url; ?>" class="more_features" target="_blank"><?php _e("More features", $wd_options->prefix); ?></a>
    </div>
  </div>
</div>