Stop the option to resize

Hi guys. I want to remove the option for the feedback text box to be resized, but cant figure out how to do it. Heres the entire code.

<?php do_action('un_feedback_content_top') ?>

<?php echo un_get_option(UN_FEEDBACK_FORM_TITLE, __('Feedback', 'usernoise')) ?> <?php if (current_user_can('edit_others_posts')): ?> <?php echo strtolower(__('Settings', 'usernoise')) ?> <?php endif ?>

<?php echo un_feedback_form_text() ?>

<?php do_action('un_fedback_form_before')?> <?php if (un_get_option(UN_FEEDBACK_FORM_SHOW_TYPE)): ?>
<?php $un_h->link_to(__('Idea', 'usernoise') . '', '#', array('id' => 'un-type-idea', 'class' => 'selected'))?> <?php $un_h->link_to(__('Problem', 'usernoise') . '', '#', array('id' => 'un-type-problem'))?> <?php $un_h->link_to(__('Question', 'usernoise') . '', '#', array('id' => 'un-type-question'))?> <?php $un_h->link_to(__('Praise', 'usernoise') . '', '#', array('id' => 'un-type-praise'))?> <?php $un_h->hidden_field('type', 'idea')?>
<?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') ?>  
<?php do_action('un_feedback_form_after')?>
<?php do_action('un_feedback_content_bottom')?>

thanks in advance

??? Read on grey is hard to read!

I looked and looked, but did not find a “feedback” text box. Where is it?

In general you use width=“15” or size=“15” or whatever size you want for a simple textbox.

Since your code mainly deals with HTML DIV’s, you may be talking about setting DIV width’s.
Look at this link about that: http://answers.yahoo.com/question/index?qid=20080807032919AA0R21g

Also, you have set style classes which may override the width. You may have to set the limit in the DIV’s style class to a certain px value.

Do you have a link to the product to show how it is not working? Not sure if any of this helps…

Sponsor our Newsletter | Privacy Policy | Terms of Service