Please help me on my textbox.

7 replies
  • WEB DESIGN
  • |
Greetings Warriors!

I highly need your mastery when it comes to html.

Please check this page, Review On my "Please tell us more about your experience" textbox, please help me to make the cursor to start in the upper left-hand corner with the text wrapping as they type.

Your help will be very much appreciated.

All The Best,
G.B.
#textbox
  • Profile picture of the author topnichewebsites
    Are you talking about tab index so each time a tab is used it goes to the next line ?
    Signature
    http://pixelcovers.com/ <- eBook add eCovers

    https://www.unicommercesolutions.com <- WordPress Websites and Maintenance
    {{ DiscussionBoard.errors[6733286].message }}
    • Profile picture of the author Go4DBest
      Originally Posted by topnichewebsites View Post

      Are you talking about tab index so each time a tab is used it goes to the next line ?
      Thanks for this question, mate. Here's a screenshot:



      Here are the codes of that form:

      HTML Code:
      <table border="0" width="243">
          <tr>
            <td width="237" align="left"><label for="post_title">Your Name</label>
            :
              <br>
              <input name="post_title" value="" type="text"  size="40" style="height:23px;"/></td>
            </tr>
          <tr>
            <td align="left"><label for="employees">Employee You Worked With:</label><br>'.
       wp_dropdown_categories( "tab_index=10&taxonomy=employees&hide_empty=0&echo=0" ) .' </td>
            </tr>
          <tr>
            <td align="left"><label for="ratings">How was your Experience?</label><br><select name="ratings"  >
              <option value="excellent">Excellent</option>
              <option value="poor">Poor</option>
              </select></td>
            </tr>
          <td align="left"><label for="post">Please tell us more about your experience:</label>
            <br>
            <input name="post" type="text" size="40" style="height:50px;"/></td>
            </tr>
          <tr>
            <td align="left"><label for="email">Your E-mail:</label>
              <br><input name="email" type="text" size="40" style="height:23px;"/></td>
            </tr>
          <tr>
            <td align="left"><label for="phone">Your Phone:</label>
              <br><input name="phone" type="text"  size="40" style="height:23px;"/></td>
            </tr>
        </table>
      Thanks a lot!

      Sincerely,
      G.B.
      Signature
      We setup and design wordpress sites using the Divi theme for roughly 200 USD. Let's talk.
      {{ DiscussionBoard.errors[6733706].message }}
      • Profile picture of the author bloodyuber
        Originally Posted by Go4DBest View Post

        Thanks for this question, mate. Here's a screenshot:



        Here are the codes of that form:

        HTML Code:
        <table border="0" width="243">
            <tr>
              <td width="237" align="left"><label for="post_title">Your Name</label>
              :
                <br>
                <input name="post_title" value="" type="text"  size="40" style="height:23px;"/></td>
              </tr>
            <tr>
              <td align="left"><label for="employees">Employee You Worked With:</label><br>'.
         wp_dropdown_categories( "tab_index=10&taxonomy=employees&hide_empty=0&echo=0" ) .' </td>
              </tr>
            <tr>
              <td align="left"><label for="ratings">How was your Experience?</label><br><select name="ratings"  >
                <option value="excellent">Excellent</option>
                <option value="poor">Poor</option>
                </select></td>
              </tr>
            <td align="left"><label for="post">Please tell us more about your experience:</label>
              <br>
              <input name="post" type="text" size="40" style="height:50px;"/></td>
              </tr>
            <tr>
              <td align="left"><label for="email">Your E-mail:</label>
                <br><input name="email" type="text" size="40" style="height:23px;"/></td>
              </tr>
            <tr>
              <td align="left"><label for="phone">Your Phone:</label>
                <br><input name="phone" type="text"  size="40" style="height:23px;"/></td>
              </tr>
          </table>
        Thanks a lot!

        Sincerely,
        G.B.
        You need to change that sucker to a textarea:

        Code:
        <textarea name="post" rows="3" style="height:50px;width:100%;resize:none;"></textarea>
        {{ DiscussionBoard.errors[6735619].message }}
        • Profile picture of the author Go4DBest
          Originally Posted by bloodyuber View Post

          You need to change that sucker to a textarea:

          Code:
          <textarea name="post" rows="3" style="height:50px;width:100%;resize:none;"></textarea>
          I'll try this, I hope this can still be connected to the database.

          Thanks a lot!

          Cheers,
          G.B.
          Signature
          We setup and design wordpress sites using the Divi theme for roughly 200 USD. Let's talk.
          {{ DiscussionBoard.errors[6749092].message }}
        • Profile picture of the author Go4DBest
          Originally Posted by bloodyuber View Post

          You need to change that sucker to a textarea:

          Code:
          <textarea name="post" rows="3" style="height:50px;width:100%;resize:none;"></textarea>
          This works, thanks a lot man.
          Signature
          We setup and design wordpress sites using the Divi theme for roughly 200 USD. Let's talk.
          {{ DiscussionBoard.errors[6751073].message }}
  • Profile picture of the author topnichewebsites
    Your best bet is do it with CSS so you can make the size you want and start the cursor at the to left.
    Signature
    http://pixelcovers.com/ <- eBook add eCovers

    https://www.unicommercesolutions.com <- WordPress Websites and Maintenance
    {{ DiscussionBoard.errors[6735180].message }}
  • Profile picture of the author Azlan
    Yes you need to use the textarea instead the input if that's what you want to do.
    Signature

    New WSO - Coming Soon...

    {{ DiscussionBoard.errors[6736911].message }}

Trending Topics