Results 1 to 2 of 2

Thread: :: jQuery Form to Form Wizard (v1.1)

  1. #1
    Join Date
    Apr 2011
    Posts
    65
    Thanks
    15
    Thanked 0 Times in 0 Posts

    Default :: jQuery Form to Form Wizard (v1.1)

    1) Script Title: :: jQuery Form to Form Wizard (v1.1)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...formwizard.htm

    3) Describe problem: Trouble customizing the script. when I change the words above each input box and/or radio button it wraps around in a column in stead of horizontially. Here is the HTML that I have, you can see the css, and js files at the link above.

    Code:
    <fieldset class="sectionwrap">
    <legend>Basic Information</legend>
          Name:<br /> <input id="username" type="text" size="35" /><br />
          Email:<br /> <input id="email" type="text" size="35" /><br />
          Phone:<br /> <input id="phone" type="text" size="12" /><br />
          I work for:<br /> <input id="job" type="text" size="15" /><br />
          Name and age of child(ren):<br /> <input id="childern" type="text" size=" 35" /><br />
          Pets:<br /> <input id="pet" type="text" size="6" /><br />
          City & State:<br /> <input id="citystate" type="text" size="20" /><br /> </fieldset>
    
    <fieldset class="sectionwrap">
    <legend>Preferences</legend>
          Projected move date:<br /> <input id="movedate" type="text" size="35 " /><br />
          I currently:<br /> Rent<input  type="radio" id="rent" size="35" /> Own<input  type="radio" id="own" size="35" /><br />
    </fieldset>
    
    <fieldset class="sectionwrap">
    <legend>Comments</legend>
    
    Any additional insturctions:<br /> <textarea id="feedback" style="width:350px;height:150px"></textarea><br />
    
    <input type="submit" />
    
    </fieldset>
    </form>

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    I see this problem only in IE (not FF for example). Does your page contain a valid doctype at the very top:

    Code:
    <!DOCTYPE HTML>
    For me that fixed the alignment issue.
    DD Admin

Bookmarks

Posting Permissions

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