The substitution of a style of CSS text box

I have created pages for students to use to send assignments. Each page has several textarea fields where they write answers to the questions. Most of them should be about 7 lines up so that students can see most of each response; but a few should be smaller, I don't want to give students the impression that they need to fill the field.

So I created the following definition of the rule in an external CSS style sheet using Dreamweaver 8:

TextArea {}
Width: 90%;
right margin: 5%;
margin-bottom: 10px;
margin left: 5%;
height: 150px;
}

I rather have specified rows to the height, but I couldn't find something like this in the CSS rule definition dialog box. Was the closest I could come to specify the height of the 'box '. Now when I want to change the height of the individual textareas, I don't know how to do it. Specification of the attribute of 'lines' when I set the textarea has no effect.

Thanks in advance for any help.

Joe Herl

It's logical. Thank you.

Joe

Tags: Dreamweaver

Similar Questions

  • I have Acrobat Pro 10, when I installed the CD player, it has affected the way I was able to move text boxes when I create a form of gall, he has also affected my ability to release and change the properties of the fields /, I'm I suspect m

    I have Acrobat Pro 10, when I installed the CD player, it has affected the way I was able to move text boxes when I create a form of gall, he has also affected my ability to release and change the properties of the fields /, I'm I suspect my off lucky cat Adobe support will not help , nor a cure to.  Is there a place to find updates to Acrobat 10, if I uninstall my current program?  I still have my original CD and paperwork.  Adobe acknowledge that they have created this problem.   I worked very intensively with Acrobat Pro 10 on the form for a non-profit, I do part, and it happened immediately after that I was testing a form I created in Acrobat 10 to test with CD player. Windows 7 operating system

    This is usually due to the function 'Snap to Grid' is enabled. It can be accidentally activated via the keyboard, so this may have been what happened.

  • Tables of contents, not the substitution of character styles applied in chapters

    My table of contents uses not the style of input I select words in the paragraphs that have styles of characters that are applied in the chapter, so some letters, more precisely the parameters, displayed in green, which is well in the chapter but not in the table of contents. I can manually fix this in the table of contents by changing the character to any style after the table of contents was generated, but I don't want to do that. I think it has to happen automatically.

    This should do it:

    (?<=\()[\w, \w)]*(?="">

    It searches the text in parentheses without selecting them.

  • Hi, PDF form of the guru. How to make a text box become a required field IF a drop-down list is selected as the "Yes"?

    Hi, PDF form of the guru.

    How to make a text box becomes a "required field", IF a drop-down list is selected as the "Yes"?

    and 'not required' if the drop down menu selected as 'No' or left blank.

    Any help would be greatly appreciated

    see you soon

    Use this code in the custom drop-down list field validation script:

    this.getField("Text1").required = (event.value == "Yes");

    (Change "Text1" to the actual name of your text field, of course)

  • What is the range of colors "BOLD" around a text box?

    Hi all

    Sorry for the question simple but what it means when you get a thick line around an area of text like that?

    Screen Shot 2014-09-02 at 16.08.05.png

    Thank you

    Ben

    Hello

    The line "BOLD" of color around the text box appears as a "shot". Take a look at the screenshots below:

    I hope this helps.

    Concerning

  • Invoke the bean of calendar (from Oracle) on the TIMING of the CLICK of MOUSE events in a text box

    Hello
    I want to get the date the user has selected in a calendar of bean (supplied by Oracle), currently my practice is to put a bean for each calendar and after date selection I am pushing this field required date, suppose I need calendar half dozen in my form I have to place the beans a half dozen, basically I don't want user of bean rather , I want him to click on the text box then CLICK event, it will display a calendar of the bean click and on the selection value will return to the text element.
    Please guide is it possible if yes how.

    Version of Oracle Forms. 10.1.2(webutil installé)
    Database. Oracle 10g Enterprise


    Thank you and best regards,
    Syed Khawar

    now when the user clicks on bean, it appears calendar through trigger WCIE

    It's a way to view the calendar of Java, however, you can simply place a button on your canvas for each calendar you wish to view and then in the trigger Button-When-Pressed (WBP) to run code similar to the following:

    /* Code example assumes you have a CONTROL block with a */
    /* block Item called: CALENDAR_ITEM, which will act as a variable */
    /* to record which date item the Java Calendar was called for. */
    BEGIN
       :CONTROL.CALENDAR_ITEM := 'MY_BLOCK.DATE1';
       Set_Custom_Property('CALENDAR.BEAN_AREA',1,'SHOW_CALENDAR','50,50);
    END;
    

    This code displays the calendar and assign the value "DATE1" to your 'Variable' control block, so that you know what Date is your calendar was called for. Then, in your trigger when-Custom-point-Event (WCIE), you manage the date returned by your calendar of Java Bean and assign the value to the element of date in your CONTROL. Field of Calendar_Item.

    DECLARE
      v_event_name      VARCHAR2(30) := :SYSTEM.Custom_Item_Event;
      v_event_vals      ParamLIst;
      n_event_val_type  NUMBER;
      jb_date           VARCHAR2(256);  -- Complete Date as returned by the JavaBean
      d_formated_date   DATE;
      jb_day            VARCHAR2(256);  -- Day Number (1-31)
      jb_month          VARCHAR2(256);  -- Month Number (1-12)
      jb_year           VARCHAR2(256);  -- Year Number (YYYY)
    BEGIN
      IF ( v_event_name = 'CALENDAR_EVENT' AND :CONTROL.Calendar_Item IS NOT NULL ) THEN
        v_event_vals := Get_Parameter_list(:SYSTEM.Custom_Item_Event_Parameters);
        Get_Parameter_Attr(v_event_vals, 'CALENDAR_EVENT_DATE', n_event_val_type, jb_date);
        Get_Parameter_Attr(v_event_vals, 'CALENDAR_EVENT_DAY', n_event_val_type, jb_day);
        Get_Parameter_Attr(v_event_vals, 'CALENDAR_EVENT_MONTH', n_event_val_type, jb_month);
        Get_Parameter_Attr(v_event_vals, 'CALENDAR_EVENT_YEAR', n_event_val_type, jb_year);
    
        /* The variable JB_DATE contains the full date formated as MONTH DD, YYYY */
        /* Our date format is different, so I get the elements of the date in the */
        /* jb_day, jb_month, jb_year variables so I can format them the way I need them. */
        d_formated_date := TO_DATE(jb_month||'/'||mb_day||'/'||jb_year,'mm/dd/rrrr');
        COPY(d_formated_date, :CONTROL.Calendar_item);
      END IF;
    END;
    

    This code example will allow you to use a single area of bean to support several calendar items on a canvas. If you have more than one canvas and you have an element of date on each canvas, you would need a surface of bean / canvas.

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • Select from the drop-down list point based on text box is not empty not

    Hello. I have a javascript code to click a button and it will insert the date in a text box named "Controller_PDF_Creation_Doc_Control_Date" in my form. I also have a drop-down list called 'Release_Approval_Initials '. Everything I'm doing is when there is a date of entry in the text box, I want that the 'Release_Approval_Initials' of the menu drop-down default by selecting the option "TM". The drop-down list is filled dynamically too. How can I do this? Here is the code I have.

    < SCRIPT LANGUAGE = "JavaScript" >

    verify() {} function

    var partNumber = ";

    var ecoNumber = ";

    var pdfDate;

    var queue;

    var queueValue = ";

    var allArray = document.getElementById('listofids').value.split (",");

    var error = false;

    for (var i = 0; i < allArray.length; i ++) {}

    pdfDate = document.getElementById('Controller_PDF_Creation_Doc_Control_Date'+allArray[i]).value;

    <!-document.getElementById ('Controller_PDF_Creation_Doc_Control_Date1') .value =' 19 / 08/11 '; ->

    queue = document.getElementById ('Release_Approval_Initials' + allArray [i]);

    queueValue = tail [queue.selectedIndex] .value;

    If ((pdfDate! = '' & & queueValue == '') |) (pdfDate == '' & & queueValue! = '')) {

    error = true;

    ecoNumber = document.getElementById('ECID'+allArray[i]).value;

    partNumber = document.getElementById('Part_Number'+allArray[i]).value;

    Alert ("You must enter a date of authorization to create PDF or Doc Control files and the queue to release for ECO" + ecoNumber + "part number:" + partNumber);

    }

    }

    {if (Error)}

    Returns false;

    }

    else {}

    Returns true;

    }

    }

    < /script >

    "< cfinput type ="Text"name =" "Controller_PDF_Creation_Doc_Control_Date #ItemID #" id = "Controller_PDF_Creation_Doc_Control_Date #ItemID #" value = "#DateFormat(Controller_PDF_Creation_Doc_Control_Date,"M/D/YY")" # "size ="12"maxlength ="8"validate ="date"required ="no"message ="you must enter a valid date in the format m/d/YY in the creation of PDF files or Doc control Date">"

    < cfinput type = "hidden" name = "today_date" id = "today_date" value = "#DateFormat (now ()," D/M/YY")" # "/ >"

    < input type = "button" value = "today's Date" onclick = "document.getElementById('Controller_PDF_Creation_Doc_Control_Date#ItemID#').valu e = document.getElementById ('today_date') .value" >

    < select name = "" Release_Approval_Initials #ItemID # "id =" Release_Approval_Initials #ItemID #">"

    < option value = "" > < / option >

    < cfloop query = "ShowDataEntryInitials" >

    < option value = "" #Initials # ""

    < cfif initial EQ ReleaseInitials > selected

    < / cfif > > #Initials # < / option >

    < / cfloop >

    < / select >

    Any help would be greatly appreciated. Thank you.

    Andy

    I figured out how to make it work. I just had to add parentheses in the right places to make it work. Here's what I did:

  • How can super impose type on an image; whenever I have placed the type on my photo type in text box moves outside the image I don'tthink I have text wrap on?

    Why can't impose a great guy on my picture?

    Click on the image and go to window > text wrapping to open the skin palette. If something other than the article that I circled is selected, pass the circled point. This is the setting where no dressing is applied to the image. If this does not work, check if there is another object that is in contact with the text block. Maybe it's something that's behind the image, or perhaps on another layer.

  • How can I get the default value of the cursor in the address bar when I open a new tab, rather than the cursor by default a search engine text box?

    Using Firefox 17.0.1 and then I XP

    Firefox does by default. You probably have an add-on installed that changed the focus of the cursor in the URL bar of the search bar.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

  • Cannot change the properties of online text in the scrolling text box

    I have a simple text box with a UIScrollBar component added to it.

    Text box properties are on "enter text, multi line.

    The problem is when I want to change a single line of text to a "BOLD" or a different color, changing the content of the entire text box. I tried the setting of the different property for the text box itself with no luck.

    Is this possible? I have to use AS3?

    I would really appreciate help!

    Thank you!!!

    Steve

    If you change the html true property - either by using the property inspector or code if you are working with code - then you should be able to have different styles in a text box. This is the property that you tried and it didn't work so I need to learn more about how you try to apply the formatting.

    In cases concerning need it AS3... In general, I would say that if you do not have an overwhelming need to AS2 so you should use AS3. It has nothing to do with the text of no!

  • Weird lines appear in the text boxes. Why? Anyway to fix this?

    These weird lines come whenever I type things in the bar address, search bar or any text box in a Web site. They are kind of annoying and I would like to know if there is a way to get rid of them.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    See:

    Safe mode disables extensions in Firefox 4, and disables hardware acceleration.

    • Tools > Options > advanced > General > Browsing: "use hardware acceleration when available.
  • Overview of the disabled scale/resize text box

    Usually, when I scale or resize a text box, it will turn into direct, giving me a glimpse of what the text will look like if I let go of the mouse, now if I resized a text box that is exactly the same until I let go of the mouse, how it move to its new position. It is very difficult to explain, and I can't really give an example image. I'm sure it's a very simple solution, I think I just need to check a box somewhere.


    Any ideas?

    Either change your preferences for Live screen drawing immediate value, or click and hold a moment before sliding the deferred value with him.

  • Get the frame to a text box

    I'm having problems to find the exact image of a page of text box element.

    The code I use is simply:

    InterfacePtr < IShape > itemShape (pageItemUIDRef, UseDefaultIID());

    clippingBounds = itemShape-> GetPrintedBBox (PMMatrix (), Transform::SpreadCoordinates());)

    InterfacePtr<IGeometry> pageGeometry (pageUIDRef IID_IGEOMETRY);

    PMRect pageBounds = (pageGeometry-> GetStrokeBoundingBox (::InnerToParentMatrix(pageGeometry)));

    clippingBounds.Top (clippingBounds.Top () - pageBounds.Top (());

    clippingBounds.Left (clippingBounds.Left () - pageBounds.Left (());

    clippingBounds.Bottom (clippingBounds.Bottom () - pageBounds.Top (());

    clippingBounds.Right (clippingBounds.Right () - pageBounds.Left (());

    For the text box in the attached screenshot, it gives me back clipping limits like X:174, Y:175, W:246, H:470. However, you can see in the screenshot the text block itself is X:174, Y:190, W:246, H:454

    The values I'm getting seem to correspond to the scope of the selection highlight if I have the highlighted text.

    I have yet to find all values / combination of the values the text-related interfaces that will allow me to directly get (or replace) rect real framework, as illustrated by InDesign.

    Anyone know how to do in this regard?

    Thank you

    Liz

    text.jpg

    Hello LizW,

    do not assume that page originated at the top left of the page. If you want to have the coordinates of point page relative to the left and top of the page and then transform the bounding element of its internal contacts page to disseminate the coordinates and, except internal coordinate of the page. After that translate the outcome of the origin of the page area delimitation.

    Markus

  • Center the text vertically in the text box

    When you open a text box how do Center you the text in the middle of the top to bottom (Pacific), not from left to right. The text begins immediately in the upper left corner. I need it in the Center with a size of predefined text box, so that if you drew a line through the center of the box from left to right, or half top of the letters above the line and the lower half would be lower than the median line. In other words it should be the same distance above the words and the top edge of the text box, on the bottom of the text box in the Center.

    Point text when the text is not in a box. When you select the "T" tool, click once and start typing. The paragraph text is when you click and drag to create a box. Since you have already typed what you wanted, you can always change to Point text with a right click on the text layer in the layers panel and click "Convert the text to Point".

  • Conditional display in the text box based on the calculated value

    Hello

    I have radio buttons that each have a numerical value. For example = 1 A = 2 C = 0. In the example below, the total is equal to 5.
    examplescreen01.gif

    The sum is displayed at the bottom of the document and is passed to another text box:

    examplescreen02.gif

    Instead of '5' displayed in the text box on the right, it should display a "Control" Word like this:
    examplescreen03.gif

    The displayed word is based on the totals through this range:

    1-2 = 'absorbing '.

    3-4 = 'practitioner '.

    5 to 6 = "control".

    The script I used to pass the value from the left to the right text box in the chart above is:

    name of the field to text box;

    var cTextBox = 'Cabinet Talent strategy knowledge - total';

    get the value of the field with the name in cTextBox;

    var sTextBox = this.getField ("cTextBox") .value;

    Set the value of this field;

    Event.Value = sTextBox;

    That I need to add to this script to show one of the words, such as "control" above?

    I am a complete novice to scripting. I found the above script online and somehow got it to work.

    I thank very much for any help or pointers, you can provide.

    Best regards

    Chris

    Sorry, there were some errors in the code that I provided above. Try this:

    If (sTextBox > = 1 & sTextBox)<= 2)="">

    Event.Value = "absorbing";

    } ElseIf (sTextBox > = 3 & sTextBox)<= 4)="">

    Event.Value = "practitioner";

    } ElseIf (sTextBox > = 5 & sTextBox)<= 6)="">

    Event.Value = "master";

    } else {}

    Event.Value = "";

    }

    If it still does not respond, you can send me the file at [email protected] and I'll check...

Maybe you are looking for