Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2007
    Posts
    99
    Plugin Contributions
    0

    Default How do I prevent a multi-line text box from being as wide as the page?

    Hi, in the example here:

    http://lifeonrecord.com/cart/index.p...&products_id=4

    The "message to be printed on CD" text box (and others like it) are as wide as the page. I've fiddled around with the "rows", "display size", and "maximum length" fields on the product options screen in the admin settings, but it doesn't seem like the display size affects the width of the box. Is there another way of making the box not as wide?

    Thanks.

  2. #2
    Join Date
    Feb 2006
    Posts
    130
    Plugin Contributions
    0

    Default Re: How do I prevent a multi-line text box from being as wide as the page?

    Try using a CSS width to set it. Find that box in the code and you can write in a class for it and add the class to your stylesheet with a width value.

  3. #3
    Join Date
    Feb 2007
    Posts
    99
    Plugin Contributions
    0

    Default Re: How do I prevent a multi-line text box from being as wide as the page?

    I'm a bit new at CSS, could you provide a quick example? Thank you.

  4. #4
    Join Date
    Mar 2007
    Posts
    159
    Plugin Contributions
    0

    Default Re: How do I prevent a multi-line text box from being as wide as the page?

    TEXTAREA {
    float: left;
    margin: auto;
    display: block;
    /*width: 95%;*/
    width: 870px;/*AAE*/*/<< Making your text box huge
    }
    is whats in your stylesheet, comment out the width or size it to what you would like

 

 

Similar Threads

  1. how to prevent image from being deleted when a product is deleted?
    By denniszc in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 7 Mar 2013, 03:01 PM
  2. How to prevent Product Attributes from being discounted?
    By rikahsdesign in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 17 Oct 2008, 07:43 PM
  3. how to prevent my site from being copied?
    By lina0962 in forum General Questions
    Replies: 2
    Last Post: 16 Feb 2007, 04:37 PM
  4. Replies: 1
    Last Post: 24 Dec 2006, 05:33 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg