Author Topic: How to stop resizing  (Read 63 times)

Jonesy

  • New Member
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
How to stop resizing
« on: January 27, 2012, 12:35:26 PM »
Hi guys. I cant seem to get this textbox to not be able to be resized. It can currently be resized and I dont want it to be, but I dont know where to put the code. Heres the entire code.

<div id="un-feedback-content">
   <?php do_action('un_feedback_content_top') ?>
   <div id="un-feedback-form-wrapper">
      <h2>
         <?php echo un_get_option(UN_FEEDBACK_FORM_TITLE, __('Feedback', 'usernoise')) ?>
         <?php if (current_user_can('edit_others_posts')): ?>
            <a class="un-button-gray" id="un-button-settings" href="<?php echo admin_url('options-general.php?page=usernoise')?>">
               <?php echo strtolower(__('Settings', 'usernoise')) ?></a>
         <?php endif ?>
      </h2>
      <p><?php echo un_feedback_form_text() ?></p>
      <?php do_action('un_fedback_form_before')?>
      <form data-action="<?php echo admin_url('admin-ajax.php') ?>?action=un_feedback_form_submit" method="post" id="un-feedback-form" class="un-feedback-form">
         <?php if (un_get_option(UN_FEEDBACK_FORM_SHOW_TYPE)): ?>
         <div id="un-types-wrapper" class="un-types-wrapper">
               <?php $un_h->link_to(__('Idea', 'usernoise') . '<span class="selection"></span>', '#', array('id' => 'un-type-idea', 'class' => 'selected'))?>
               <?php $un_h->link_to(__('Problem', 'usernoise') . '<span class="selection"></span>', '#', array('id' => 'un-type-problem'))?>
               <?php $un_h->link_to(__('Question', 'usernoise') . '<span class="selection"></span>', '#', array('id' => 'un-type-question'))?>
               <?php $un_h->link_to(__('Praise', 'usernoise') . '<span class="selection"></span>', '#', array('id' => 'un-type-praise'))?>
               <?php $un_h->hidden_field('type', 'idea')?>
         </div>
         <?php endif ?>
         <?php $un_h->textarea('description', __('Your feedback', 'usernoise'), array('id' => 'un-description', 'class' => 'text text-empty'))?>
         <?php if (un_get_option(UN_FEEDBACK_FORM_SHOW_SUMMARY)): ?>
            <?php $un_h->text_field('title', __('Short summary', 'usernoise'), array('id' => 'un-title', 'class' => 'text text-empty'))?>
         <?php endif ?>
         <?php if (un_get_option(UN_FEEDBACK_FORM_SHOW_EMAIL)): ?>
            <?php $un_h->text_field('email', __('Your email (will not be published)', 'usernoise'), array('id' => 'un-email', 'class' => 'text text-empty'))?>
         <?php endif ?>
         <?php do_action('un_feedback_form_body') ?>
         <input type="submit" class="un-submit" value="<?php echo esc_attr(un_submit_feedback_button_text()) ?>" id="un-feedback-submit">
         &nbsp;<img src="<?php echo usernoise_url('/images/loader.gif') ?>" id="un-feedback-loader" class="loader" style="display: none;">
         <div id="un-feedback-errors-wrapper" class="un-errors-wrapper" style="display: none;">
            <div id="un-feedback-errors" class="un-errors" ></div>
            <span id="feedback-errors-corner"></span>
         </div>
      </form>
      <?php do_action('un_feedback_form_after')?>
   </div>
   <?php do_action('un_feedback_content_bottom')?>
</div>

thanks in advance