Question of form. It seems simple, but it is...?

I have this form:

4-2-2011 23-31-32.jpg

The picture says it all, how can I move the text surrounded by a circle up to align with the top of the comments box and use several lines of text, instead of down as it is currently?

The form.php code is attached. http://www.millcon.nl/harm/form.php

The whole page is here: http://ppbm5.com/submission.html

Prejudice,

I'm sorry, I didn't know that the form was more or less created by a clever program. The problem with similar programs is that they respond to different scenarios and as such, the code tends to become bloated.

With this in mind, do not change the structure of the script that has been created and forget what I said earlier.

In response to your original question, simply add the following style rule to the function of style at the base of form.php rule

.instruction {}
Width: 300px;
float: left;
padding-left: 10px;
}

You will also need to add float: left for the following input fields

.text_box, .text_area, .text_select {}
Width: 300px;
  float: left;
}

This will give you the required effect.

Ben

PS I started with user Heath (HUG) group in the 1970s, to program in the port of Benton Basic, assembler and Pascal. What follows is my pride and joy at the same time that Apple was simply a toy.

I always locked him in a cupboard.

Tags: Dreamweaver

Similar Questions

  • You have a question pretty simple - but puzzled - a photo, but links assets below the discoloration?

    Hello to everyone.

    This should be quite simple - I do generally what I need with DW, but I'm far from an expert!

    My goal: to have a picture of hovering which fades on the landing page, then you can then continue to use links from site Web etc under it.

    It is as far as I can get:

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Untitled Document < /title >

    < script src = "SpryAssets/SpryEffects.js" type = "text/javascript" > < / script > "

    < script type = "text/javascript" >

    function MM_effectAppearFade (targetElement, duration, of, to, toggle)

    {

    Spry.Effect.DoFade (targetElement, {duration: duration,:, to: to, turn on/off: toggle});

    }

    < /script >

    < / head > " < a href ="http://www.google.com"> Hello < /a > < br / > .

    Test test

    < body > < div style = "position: absolute;" left: 2px; top: 40px; Background: URL('background.png'); ">

    < img src = "New Folder/bg.jpg" width = "920" height = "100" onmouseover = "MM_effectAppearFade (this, 1000, 100, 02, true)" / > "

    < /p > < / div > < br / > < p > < p >

    " < a href =" http://www.test.com ' > test < /a > < br / > < / p > < / a > .

    < / body >

    < / html >

    So in its current form, I have to 1) able to click on the links under the image and also ) 2 so he can not not refade when the mouse is over the image. -both disappear.

    I know it's pretty simple, but we must learn! -

    Thanks in advance

    It's actually a bit harder than you think.

    Fade effects usually removes the item that they disappear from the page, they just change to zero opacity. Removing it would usually result in some reflow design, move things around the page. That is why something behind the faded element is not "clickable", he is still behind a transparent element.

    Think of it as trying to hit a bird sitting on a windowsill. You can see the bird through the closed window, but when you try to hit, you hit the glass in place.

    With a little css trickeration, you could change the z-index of two nested

    Tags when the parent is stationary. Which would allow you to access the text that is typically "the window" by moving it there
    in front of the DIV of transition.

    I'll see if I can find something for you real quick.

  • I forgot my secret question, answer and the second email but I have the password of my ID Apple and my phone number. I want to receive by email for my secret to my Apple ID issue because it is a gmail account. Please help me

    I forgot my secret question, answer and the second email but I have the password of my ID Apple and my phone number. I want to receive by email for my secret to my Apple ID issue because it is a gmail account. Please help me

    You have to ask Apple to reset your security questions. To do this, click here and choose a method; If this page does not list one for your country or if you are unable to call, complete and submit this form.


    (139026)

  • Did hanging new Visio fltscreen on my desktop with RGB connection cable-simple - but tv still says - no signal-computer-help please?

    I recently hooked my flat screen visio for my dell inspiron desk top - using the RGB, TV connection cable and the computer was fast n simple, but yet my tv continues to say - no signal-computer-when I select it?

    Try to activate dual display, right click on the desktop-> Graphics Options-> Output To-> Dual Display Clone.

    Or try to decrease your resolution like 1024 X 768 and see one that works.

    Connect your computer to a TV
    http://Windows.Microsoft.com/en-us/Windows7/connect-your-computer-to-a-TV

    Multiple monitors: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/multiple-monitors-frequently-asked-questions

  • How do to this chain operation looks simple but causing a lot of time to do :)

    Hi all

    I have a very large chain, i.e. the soap xml response send by server that I read once connected to the server using http, now the problem is that I need to create a Document out of it and analyze what is simple but the answer I get server requires many replacements of string as example 1) replacing "<" with "<"  2)="" replacing="" ">"="" with="" "="">" etc before creating a document out of it now there are many such replacements in the sending of the response from server that takes a lot of time. 5 minutes on the emulator. So my question is how do? Is there a native method to replaceAll occurrences of a substring in a string or while I can use or is there another good way? Please let me know thx.

    Thank you

    Sagar

    We took over a project done by someone else, and they were doing exactly what you do.  Here is their source, which I think is more effective that you give it a try if you want.

    But be aware that I have never used or tested this code.

    I guess you pull that string to the center of your SOAP response.  It has been encoded XML.  So you can do what we did in this case and wrap the string as a data element in an XML element and then use the XML parser to get the actual data, which feed us an XML parser again to get the actual data.  XML is already set up to deal with these characters, so it was more effective than the approach to replace.  Actually to be honest, it wasn't the reason we exchanged, that as part of the parser XML meant we were convinced it was done correctly.

     public String replaceAll(String source, String pattern, String replace) {
            if ((source != null) && (pattern.length() > 0)) {
                final int len = pattern.length();
                StringBuffer sb = new StringBuffer();
                int found = -1;
                int start = 0;
    
                while ((found = source.indexOf(pattern, start)) != -1) {
                    sb.append(source.substring(start, found));
                    sb.append(replace);
                    start = found + len;
                }
    
                sb.append(source.substring(start));
                return sb.toString();
            } else
                return "";
        }
    
  • I want to reset my security question I forgot the answers? BUT I don't see any options, when I try to reset, saying "reset the security questions? Help, please

    I tried to change my security questions that I forgot my answers, but I don't see any option to reset security issues?

    Need help please, I'm stuck with this?

    Will be appreciated if helped.

    Thank you

    SKLB

    Look at this article. In my view, that information can help you. If you forgot your Apple ID - Apple Support security questions answered

  • When I connect my hotmail account, I can't open any folder, the Inbox, the new message,... everything seems normal, but when I click on something, it isn't responding.and it doesn't see the error.it works very well in internet explore.

    When I connect my hotmail account, I can't open any folder, the Inbox, the new message...
    everything seems normal, but when I click on something, it isn't responding.it works very well in internet explore.

    I think the next thing to test would that interfere with Add-ons. Disables the Firefox Add-on - Add-ons that only list compatibility with Firefox 5, but some add-ons could cause problems.

    To test, the simplest method is to restart Firefox Safe mode.

    First of all, I recommend you backup your Firefox settings in case something goes wrong. See your backup information. (You can copy your profile folder Firefox together somewhere outside the Mozilla folder).

    Then, try help > restart with disabled modules > continue in Mode safe (do not check the boxes). This article gives more information on the options and features of Safe Mode: Safe Mode.

    What is fix? If so, you may have to disable some add-ons.

  • What is a simple but effective update to the XPS 8500 video card? (Computer complete Newb)

    What is a simple but effective update to the XPS 8500 video card? (Computer complete Newb)


    Hello Dell Community. I read through the sticky XPS compatibility and some discussions on upgrading video cards. However, I couldn't find something that fits my needs. If you all can help me with this, would be great!

    Characteristics of the computer:

    • Dell Xps 8500
    • Intel Core i7-3770 CPU @ 3.40 GHZ
    • 16 GB of Ram
    • 64-bit operating system
    • AMD Radeon HD 7570

    Needs:

    • Run newer games of 2014/2015 without lag on medium to high heat (GTA V)
    • Relatively easy to install (remove some screws and paste the video card in and voila!)
    • No need to upgrade the power supply

    Budget is $ 200-250:

    • Obviously the lower the better and if need be, the budget is flexible. Depends on if the gain is important for the payment of the sum.

    Look forward to your answers!

    Thank you

    Richard

    A card that I know works is $200 would be

    EVGA GeForce GTX 960 SuperSC ACX 2.0 + 2GB GDDR5 128 bit 02 G-P4-2966-KR that it comes with a 2 X 6 pin cable 8 pin Y so the stock power should be good.

    more than 2 GB will not improve the map and it will increase the price.

    http://www.Newegg.com/product/product.aspx?item=N82E16814487091

    http://www.Amazon.com/EVGA-GeForce-dual-link-graphics-02G-P4-2966-KR/DP/B00SC6HAS4

    Don't get me wrong although it won't make a video full screen 4K.

    To 3-way SLI GTX 980 and a power of 1500W power supply in an area 51 triad.

  • Download not add-ons for Muse. Easy to buy and all seems good, but nothing in the downloads folder. Adobe "Obtained" Watch website I have Mac, Muse CC 2015, C Clowd, Cync files is on.

    Download not add-ons for Muse. Easy to buy and all seems good, but nothing in the downloads folder. Adobe "Obtained" Watch website I have Mac, Muse CC 2015, C Clowd, Cync files is on. Help?

    You should contact the provider of the Add on in this case.

  • Designed the large page background color/text and images. Seems ok, but when I send pdf the background page is much too small.

    Designed the large page background color/text and images. Seems ok, but when I send pdf the background page is far too small - the drawings are ok.

    Send to the printers tomorrow but pdf does not appear correctly! Any ideas? Please, I beg you!

    Please tell us

    -This page - is that he recorded in a graphic file? What type? If not, where is it?

    -How exactly do you send as PDF - what app do you use? and what are the measures?

  • How to record on the mixing in mono, 0 db reduction in volume in mp3 64 bps? Sounds simple, but about all the support staff has been able to do.

    How to save on mixing in mono, 0 db reduction in volume, (same volume as in the files-no - 3 dB reduction) to MP3, 64 bits/s? Sounds simple, but about all the support staff has been able to do.

    Several solutions to this problem.  I think that we have discussed on the support email, but I will share this new here so that he can help others as well.

    Firstly, as I have explained in the e-mail, default, hearing support right Pan that prevents content mixed to a stereo field centre to be stronger than the same worn out content far left or right.  This provides one - drop 3dB to center the content by default, but you can disable it completely by entering Preferences > multitrack and by setting the Mode panoramic default to left/right cut (logarithmic)

    Now, when you create a new multitrack session, there is an option to specify the captain multiplexing.  Here, you can select Mono, stereo or 5.1 and it will be the mode of multiplexing by default for a mix of base operation regardless of the content of your video, but can be overridden when you export a mix of session.

    Then, if you choose the menu item multitrack > Mixdown Session to the new file... always by default is the captain of multiplexing.  This command does not write to disk, is a not preview or pre-processing.  If you want to export your mix multitrack session directly on the disc in the desired format and multiplexing file, use the command file > export > multitrack mixer > whole Session... You will have then the full set of output options, including the entire line output option that you like and the format you prefer.

    Here, I have disabled by default 5.1 output and selected a Mono mix instead.

    I've now changed the parameters of format as well as MP3, 64K.

    With most of these configuration details, you only need to define their time and they will remain the default values for subsequent projects, except change again.  The dialog box export a multitrack mix will reset the mix options to match the default output and the MP3 settings can be updated to reflect the closest Kbps setting of the sampling frequency of your session.

  • I must be missing something simple, but I can't figure out how to remove my Adobe account?

    I must be missing something simple, but I can't figure out how to remove my Adobe account?

    http://livingtext.WordPress.com/2009/03/13/delete-an-Adobe-account/

  • Pass a variable to a text entry field in a URL (was: I feel like it should be simple but)

    I think it should be simple, but I'm having a hard time finding how to pass a variable to a text entry field in a URL. I have a text input field ("enter your postal code') and a button that says 'Go '. When the user enters their zip and hit 'Go', I need the postcode, they came to pass in a URL to a new Web site so that they can see the offers in their region. This is a Flash 300 x 250 banner. Can someone help me?

    I can download my FLA somewhere and link to it if needed!

    Click on the frame that contains your go button and your textfield and paste Panel actions:

    go.addEventListener (MouseEvent.CLICK, f);

    function f(e:MouseEvent):void {}

    navigateToURL (new URLRequest ("http://namebrandinsurance.com/auto/newResults.php?zip=" + zip.text + "& submit = submit"));

    }

  • simple but pretty darn stuck - wait the images load

    I think it's pretty simple, but I'm not able to do this. situation is something like this:

    function name123 (): void //i m already in service.
    {
    ....
    var a: Loader = new Loader(); define a charger
    var b: new URLRequest = new URLRequest (image path); give the path
    a.Load (b);
    a.contentLoaderInfo.addEventListener (Event.COMPLET, Evenementcomplete);
    now the code after this line, I want that they don't run until the above has finished loading. because if I type the codes below, it will not work.
    a.Width = 100;
    a.Height = 100;
    }

    function eventComplete(e:Event):void
    {
    codes
    }

    I know that if I give you set width and height in function Evenementcomplete, I could do, but the situation is different and I have to set the sizes based on name123 only. kindly help out me... its been two days now...

    I think that this flow is quite inefficient and, above all, expensive in terms of consumption of memory. Also, this approach is quite rigid.

    Here's some code that performs a virtually unlimited number of images loading. The only thing to do is to fill imageURLs with proper URL. It may not match all needs, but because the references to the loaded images are stored in one place - you can always find them during execution:

    
    var imagURLs:Array = ["img0.jpg", "img1.jpg", "img2.jpg", "img3.jpg", "img4.jpg"];// array of objectsvar images:Array = [];var loadCounter:int = 0;loadImages();
    
    function loadImages():void {     var loader:Loader;     for (var i:int = 0; i < images.length; i++) {          loader = new Loader();          loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);          loader.load(new URLRequest(images[i]));          images.push({loader: loader, index: i});     }}
    
    function onLoadComplete(e:Event):void {     LoaderInfo(e.target).removeEventListener(Event.COMPLETE, onLoadComplete);     loadCounter++;     if (loadeCounter == imgURLs.length) setSizes();}
    
    function setSizes():void{     var image:Bitmap;     for each(var obj:Object in images) {          image = obj.loader.content;          image.width = 200;          image.height = 100;          obj.image = image;     }}
    
  • Transparent nav seems correct, but can't click on the links below.

    It is apparently a common problem, but I don't know if there is a solution.

    What I have is a navigation bar swf "extensible." The swf file expands on the content page, so I set the 'wmode' to 'transparent' sovereign wealth funds (z-index is also defined, so the swf file is above the page content, in the case where what matters).

    Everything seems great, but I cannot click on any of the links on the page below the navigation bar swf. I can see them, but I can not click on them.

    Is there a solution?

    * I have invested far too much time on this Web site to give up at this point, so I really hope that one of you will help me.

    Yes, it is something that must be changed in the Flash animation, by the person who created it or is the source fla file.  There is a chance that the film uses the alpha property to make things visible or invisible.  If so, then the visible property, it is what must be changed instead (or in addition to the alpha).

Maybe you are looking for

  • Convert an ASCII character bitmap

    Hi, I'm possibly looking through labview, enter a character on the keyboard (with the characteristics of the selected source) and create a bitmap for further processing. Perhaps one of the few things that cannot be done because I have time searching

  • HP Pavilion dv6-6c53cl Graphics Card Upgrade!

    Is Hello possible that I can replace and update the graphics card for my HP Pavilion dv6-6c53cl? I would like to play some of the newer games on the market, but the graphics card seems to be holding back me. If it's not a way I can replace it, is the

  • How do you do windows open each new folder in the same window?

    in Control Panel-folder options, open each folder in the same window is selected, but whenever a file is opened, it opens in a new window, what's wrong? Windows 7 pro, clean install, toshiba portege m700

  • Inspiron 530 processor upgrade

    I have a dell inspiron 530 with 3 GB of ram, dual core processor, 2.0 mhz.  I want to this level to a faster processor. I saw some posts in the forums where people have said that they have improved their processors, but I just got the phone with Dell

  • I can not remote desktop in a Win 7 machine

    Since August patches, we cannot int remote desktop a Win 7 machine. It lets me initially and then loses the connection. So when I try to find it again, it is not found. If I reboot, think likewise. Allows to connect you then disconnects the session,