Css forms help please

Hi Everyone, Lining up checkboxes with out using tables. Any
ideas?
This is how i have achieved it but --
I will make classes for these of course but what i wanted to
know is how i can get the checkbox to line up nicely
without using padding-right: 39px; etc
<div style="width:275px;">
<p>
<label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 55px; COLOR: #000000;">
<strong>歯が痛い</strong>
:: Sore Tooth</label>
<input type="checkbox"/>
<label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 18px; COLOR:
#000000;"><strong>歯肉出血</strong>
:: Bleeding Gums</label>
<input type="checkbox"/>
<label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 1px; COLOR:
#000000;"><strong>歯が折ている</strong>
:: Broken Tooth</label>
<input type="checkbox"/>
<label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 39px; COLOR:
#000000;"><strong>口臭がある</strong>
:: Bad Breath </label>
<input type="checkbox"/>
</p>
</div>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
label {
float: left;
clear: both
input {
float: right;
p {
margin: 0;
padding: 0;
clear: both;
}</style>
</head>
<body>
<div style="width:275px;">
<p>
<label>:: Sore Tooth </label><input
type="checkbox"/></p>
<p>
<label>:: Bleeding Gums </label><input
type="checkbox"/></p>
<p>
<label>:: Broken Tooth</label><input
type="checkbox"/>
</p>
<p>
<label>:: Bad Breath </label> <input
type="checkbox"/></p>
</p>
</div>
</body>
</html>
quiero mas wrote:
> Hi Everyone, Lining up checkboxes with out using tables.
Any ideas?
> This is how i have achieved it but --
> I will make classes for these of course but what i
wanted to know is how i can
> get the checkbox to line up nicely
> without using padding-right: 39px; etc
>
>
> <div style="width:275px;">
> <p>
>
> <label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 55px; COLOR:
> #000000;">
>
???? :: Sore Tooth</label>
> <input type="checkbox"/>
>
> <label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 18px; COLOR:
> #000000;">
???? :: Bleeding Gums</label>
> <input type="checkbox"/>
>
> <label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 1px; COLOR:
> #000000;">
?????? :: Broken Tooth</label>
> <input type="checkbox"/>
>
> <label style="font-family: Arial; FONT-SIZE: 120%;
padding-right: 39px; COLOR:
> #000000;">
????? :: Bad Breath </label>
> <input type="checkbox"/>
>
> </p>
> </div>
>

Similar Messages

  • CSS form help

    Hello,
    I am currently making a form for my website and so far i've been able to successfully put one together using css. Only problem i have is i can't seem to send anything with the form. Everything is the exact same as my previous table form and is using the same working php script. I'm not sure if all my code is correct, however it does pass W3C.
    Does a css form need a different script?
    If anyone would be able to quickly check my form code, that would be awesome, thanks.
    <form action="emailtoform.php">
    <label for="name">Full name:</label>
    <input name="name" type="text" id="name" value="" size="30" />
    <br/>               
    <label for="email">Email address:</label>
    <input name="email" id="email" size="30"/>
    <br/>
    <label for="phone">Phone number:</label>
    <input name="phone" id="phone" size="30"/>
    <br/>
    <label for="address">Addresss:</label>
    <input name="addresss" id="address" size="30"/>
    <br/>
    <label for="event">Event date:</label>
    <select name="date" id="date">
      <option>Date..</option>
    </select>
    <select name="month" id="month">
      <option selected="selected">Month...</option>
      </select>
    <select name="year" id="year">
      <option selected="selected">Year...</option>
    </select>
    <br/>
    <label for="message">Message:</label>
      <textarea name="message" cols="30" rows="4"></textarea>
      <br/>
      <input name="cancel" type="reset" value="Cancel" />
      <input name="submit" type="submit" value="Submit" />
    </form>

    Firstly, just to clarify, this is not a "CSS" form. It's an html form.
    The form action is <form action="emailtoform.php">.
    So you need a second file called "emailtoform.php that will actually process the form, using PHP code.
    HTML cannot process the form. It can only send the form fields either to the same page or to a different location on the server where it is processed by a server-side scripting language like PERL or PHP.
    Your form has issues with the date dropdowns and you have 3 "s" in address.
    Paste the following code into a new file and name it emailtoform.php. Put it in the same location as your form file. If PHP is enabled on the server, this should work. I tested it. Update the code with your email address in $destination_email and $from. This is just a starter script, but it's functional.
    <?php
    extract ($_GET);
    $destination_email="youremailaddresshere";
    $from="FROM: youremailaddresshere";
    $email_subject="$name has sent an email";
    $email_body = " $name\n $email\n $address\n $phone\n $message";
    mail ($destination_email, $email_subject, $email_body, $from);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "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>
    </head>
    <body>
    <h2>Thank you for your email <?php echo $name ?>.</h2>
    </body>
    </html>

  • Assessment form help, please!

    Hello:
    I've taken over updating a Robohelp project created years
    ago. The project includes an assessment that the user fills out,
    submits, then receives a "pass/fail" message.
    For some reason, the submit button stopped working a few
    weeks ago when I republished the project (I'd only changed the text
    in another topic, so I have no idea what happened).
    I now need to figure out:
    1. How to "tell" the submit button what to do
    2. How this could have broken when all I did was change the
    text in another topic.
    Here's what I know (not much...)
    1. After the user clicks "submit," an ASP file looks at the
    responses and spits back the pass/fail results. The ASP file is
    located on a server.
    2. I've looked at the True Code and I can't find anything
    that clues me in as to what's happening with the submit button.
    3. I've looked at the submit button properties and can't find
    anything.
    4. I've right-clicked to look for a "form properties," but
    there is no "form properties" option, just "table properties,"
    which lets me format differently, but again gives me no info about
    what that button is doing.
    5. The web developer gave me some code to type into the True
    Code to fix the problem, but lucky me, I currently only have
    read-only rights to the server and so my project wasn't saved. That
    code is now lost and the developer is on vacation and I'm on my own
    until he gets back to help me out again. In any case, the code
    referenced the ASP file and it was only one line long.
    6. I called the original author of the project, but it was 6
    years ago when this was created, so all he remembered was setting
    up the questions, not the submit button.
    Can anyone help me figure out how to "tell" the submit button
    that it's supposed to "talk to" the ASP file on the server?
    Thank you!!

    Thanks, Roger.
    I did find a command by selecting "view source" on the HTML
    file. The command looks something like this:
    FORM action=assessmentResults.asp method=post
    So, I tried to copy that into the True Code (highlighted
    below):
    </head>
    <!--(Body)==========================================================-->
    <body>
    <!--(Generated
    Code)================================================-->
    <!--(WARNING: DO NOT EDIT OR DELETE THIS
    SECTION!)==================-->
    <!--begin!kadov{{===================================================-->
    <form>
    <!--FORM
    action=assessmentResults.asp method=post>
    <!--}}end!kadov=====================================================-->
    <!--(Table)=========================================================-->
    But it won't save. I save the project, generate it, and when
    I open it again, the code is gone.
    So, now I have yet another question: why isn't the true code
    saving?
    Would it help to post the actual HTML file? Or more of the
    True Code page?
    Thanks.

  • Help please.trying to create pdf fillable form

    Hi,
    I created the form (see attached)...but I can't figure out what these characters are for and how can I delete them. Look into the boxes and it shows t and e.  I am so frustrated with this. Don't know what I did to create them, but all I need is the blank field and/or box for text. Help please. Thanks.

    You didn't delete the text field labels.  Move the yellow bars on you text fields to the right and you will see the labels.  You can delete the label or use the area for your labels instead of additional text boxes.  Using the fields will give better alignment for you text

  • I am using garageband 11. I have recorded a free form intro. I want NO Tempo in this section. Later in the song I want a tempo to kick in. How can I go from NO TEMPO to tempo. It is the NO TEMPO part that is messing me up. Help please.

    I am using garageband 11. I have recorded a free form intro. I want NO Tempo in this section. Later in the song I want a tempo to kick in. How can I go from NO TEMPO to tempo. It is the NO TEMPO part that is messing me up. Help please.

    All measures in a GarageBand '11 project need to have a tempo.You can adjust the Tempo in the Master Track automation curve and vary it, but you have to set a tempo.  When recording the "No tempo" section disable the metronome and ignore the tempo. Just set the tempo automation for that part slow enough, that the duration of that part is long enough.

  • Help please! Going mad with CSS in JEditorPane

    Hi gurus,
    For more then two days now i am trying to get css working with html in my jeditorpane.
    This is the stylesheet:
    .toc1
    font-size:12.0pt;
    font-family:Arial;
    font-weight:bold;
    margin-bottom: 0px;
    .toc2
    font-size:11.0pt;
    font-family:"Times New Roman";
    margin-left: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    .plannerhyperlink
    color:green;
    text-decoration:italic;
    SIMPLE isn't it?
    In my JEditorPane constructor I do this
    StyleSheet styleSheet = new StyleSheet();
    //StyleSheet styleSheet = kit.getStyleSheet();
    FileReader reader = new FileReader("/programs/eclipse/workspace/Planner/src/nl/renepetersconsultancy/planner/gui/HTMLHelp/test.css");
    styleSheet.loadRules(reader, new URL("file:/programs/eclipse/workspace/Planner/src/nl/renepetersconsultancy/planner/gui/HTMLHelp/test.css"));
    kit.setStyleSheet(styleSheet);
    setEditorKit(kit);
    setPage(url);
    I know that the rules are loaded: I printed them to check that. But nothing happens!!!! Almost all layout is gone. If I use the original stylesheet and load my rules on top of them, I can see I have all of them, but everything is layout with the original default style and again my layout is ignored.
    HELP Please, anyone. I am desperate (deadline + demo is tomorrow) :-(
    Rene'

    GL is far easier to do simple CSS than DW, but once you get through the awkward DW interface, it can become clearer. I can only easily see how CSS is created in DW by exporting a GL site that has some already in it. Still not as easy as GL, but we're now stuck with it.
    DW still does not handle full fledged CSS unless you have coding experience.
    DW has always been more for the programmer than designer (just try asking a question on the DW forum :-)
    CS4 seems to be an improvement, but not there yet.

  • Former pc user converted to mac..ipod not recognised? help please

    I have just changed my operating system from windows to mac osx. I plugged in my ipod and it only recharges,it doesn't recognise ipod. I assume this is becauseI need to reformat the ipod.Can anyone inform the the process involved,I have looked through endless pages of mac support and can not find a definitive answer. I have downloaded the latest ipod updater and still nothing. Help please.

    Adrian
    Here's a few suggestions to try.
    1. Restart your Mac then plug in the iPod. Open "Disk utility" and see if your iPod shows up. Sometimes the "spinning beachball" icon may show up, give at least 15 mins before you conclude that the Mac is locked up. You can also try hitting the Mount button. This may cause the iPod to show up.
    2. If that does not work, go to the Apple menu and select "About this Mac", click "more info" and go to FireWire. See if the iPod shows up there.
    3. If #1 and # 2 does not work then download the latest PC version of the iPod updater. Instal on your PC, restore using this which would wipe the iPod. When this is done, connect to your Mac. If it shows up in Disk Utility then your can Erase and format "Mac OS extended". If this step is not successful, hit the "security options" button and select "zero all data" and try again. You may then need the Mac version of the latest iPod updater to update firmware.
    Hope one of this works for you.
    iBook   Mac OS X (10.4.3)   2G scroll wheel iPod, 4G click wheel iPod, iPod video

  • HT204053 In iCloud setup my apple I'd is not accepting. Getting error message it should be  an email I'd, but my my apple Id is just in user I'd form? Please support.

    In iCloud setup my apple I'd is not accepting. Getting error message it should be  an email I'd, but my my apple Id is just in user I'd form? Please support.

    I've tried both. First, I tried on my pc, where iTunes had installed iCloud when it last updated. I have iTunes installed on this computer (and on my iPad and iPhone), but that wasn't the issue.
    So I went online, thinking I needed a separate iCloud Apple ID, but it prompted me for my current Apple ID and gave me the message about my ID being "valid" but not an iCloud account," which, lol, was what it had asked me to do in order to create one. I checked, and at least one other user is having the same issue. I'll attempt to copy/paste the Support request url: https://discussions.apple.com/thread/4430653?tstart=0
    Thank you for any help you can give.
    Trish

  • Is it possible to create a single texbox? and how to delete a button on a form? please asap, badly n

    Is it possible to create a single texbox? and how to delete a button on a form? please asap, badly needed it right now. thx -regards gustavo

    Hello Gustavo,
    You can create a single textbox using the textbox option here (This is for you to enter text - not for the visitor): http://jingsite.businesscatalyst.com/jing/2013-09-30_2212.png
    If you want to create a textbox for the visitors to enter text, then you need to enter a form, and you can delete the "message" field from the "simple contact" form, but not the name and the email fields (those are mandatory and can't be deleted).
    You may want to check external forms in case you want to have the form rather customized, to check if you can have forms with single textbox. An example would be "Jotform".
    Hope this helps.
    Cheers
    Parikshit

  • Hi, I have an iPod touch 5th generation which i got about 10 months ago and now my sound is not working. for example my music isn't playing nor are any of my game sounds. Someone help please.

    Hi, I have an iPod touch 5th generation which i got about 10 months ago and now my sound is not working. for example my music isn't playing nor are any of my game sounds. Someone help please.

    No sound form :
    - Speaker?
    - Headphones?
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • WEBUTIL not working, some help please

    Hi,
    I am new to Forms 10G and I am starting conversion from Forms 6i. I think I have setup WEBUTIL as decribed in Oracle documentation, step by step. I noticed that none of the calls to WEBUTIL API's are working. For test I tried to delete a file by running:      "client_host('cmd /c del c:\putty.log');"
    It came back with error:
    "oracle.forms.webutil.host.Host bean not found. WEBUTIL_HOST.Execute will not work."
    What am I missing? Could anyone help please?
    Thanks.

    I have done the following test:
    1. Create new module
    2. Add a block manualy
    3. Add a button on the block
    4. In the WHEN-BUTTON-PRESSED trigger add : "client_host('cmd /c del c:\putty.log');"
    5. Attach webutil.pll removing the path
    6. Compiled Ok
    7. Executing the form returns the error mentioned above
    than
    8. Open webutil.olb object library from form builder
    9. Double click on the MAIN tab
    10. Drag the WEBUTIL object group under object groups node of my form subclassing it which added the following objects to my form:
    a) WEBUTIL_ERROR under alerts node
    b) WEBUTIL under data blocks node
    c) WEBUTIL_CANVAS under canvases node
    d) WEBUTIL under object groups node
    e) WEBUTIL_HIDDEN_WINDOW under windows node
    11. Compile OK
    12. Works
    Hope this helps,
    Alex

  • Tried to upgrade and after uninstalling and reinstalling several times, keep getting "procedure entry point could not be located in dynamic link library" followed by "iTunes was not installed properly"  Error 7.....Help, please??

    Tried to upgrade as instructed and after uninstalling and reinstalling (even back to the former iTunes which I was happy with)several times, keep getting message "Procedure entry point could not be located in dynamic link library"  followed by "iTunes was not installed properly"  "Error 7".    Help, please??

    Entry point errors can usually be fixed by deleting the offending dll, then repairing the component it is part of from the programs and features control panel. Unfortunately you neglected to include the detail of which dll is mentioned.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I want to fix my zoom for my iphone the screen becom bigger and i can not fix it again can anyone help please

    hi there /
    i want to ask that i was play with my  iphone for the zoom and i was missing control
    and the screen become bigger and i can not fix it again i want help please
    thank you
    samer form rotherham

    Hi, samer.  
    Thank you for visiting Apple Support Communities.  
    This sounds like you may have enabled the Zoom feature.  Here are the steps on how to disable this feature.  
    iOS: Home screen icons are magnified or large
    http://support.apple.com/en-us/HT203332
    -Jason H.  

  • I can see and download pdfs in Mail, but I can't even see editable pdfs in Mail.  can anyone help please?  Thx.

    I can see and download pdfs in Mail, but I can't even see editable pdfs in Mail.  Can anyone help please?  Thx.

    Thx Eric.  You've helped!  When I tried to copy the words written in my e-mail to show you what I meant, I right clicked to copy, and saw an option to open the attachment, which it did!  So I'm sorted thank you.  Editable means a form which you can fill in and send back.  Thanks again.  Stephen

  • Gray screen when turning on iBook G4 with tiny file folder in center of screen blinking the finder icon and a question mark.  Have tried several things.  Any help please??

    Gray screen when turning on iBook G4 with tiny file folder in center of screen blinking finder icon and question mark.  I cannot figure this out.  Tried everything I know.  Can someone help please???

    Hello,
    Ideally you need to boot from the disk as you have no other media advisable. (e.g your hard drive)
    Without some form of system disk or restore you wont be able to diagnose the problem with your hard drive.
    By using a Mac OS X system disk you can load up the Disk Utilities and repair the hard drive if shown it's available. If it's not available you would need to replace the hard drive and reinstall Mac OS. Without any disk to support you, you are going to struggle.
    You can obtain replacement disk, both retail copies or system disk on the Internet.
    If you know what version of Mac OS X you had install (I'm guessing that it would have been 10.3, but would recommend 10.4) A retail disk is normally black with a colored 'X' on it, while system disk are always.
    Always try and obtain a copy of the system restore disks (Gray) for your iBook
    Ebay is another outlet that has genuine system disk for sell, but like any auction site, it's as and when someone is selling them.
    The only other thing you could do is take it to a Apple repair agent who could check the hard drive on your behalf. That way you can get confirmation if the problem is the drive or some other fault. They may even help restore the OS for you.
    I can't think of anything else to try without some form of disk to help you.
    There maybe just one other small thing you could try.
    When booting up, firmly rest your palm of your hand on the iBook next to the tracker pad on the left side.
    If it works then it's another fault that I'm aware of.

Maybe you are looking for