Feb 2, 2001 #1 MikeT IS-IT--Management Feb 1, 2001 376 US I have two dropdowns, and each is its own form. Even though its coded like this: <form> (code) </form> <form> (code) </form> the second dropdown appears below the first, and I need it *next* to the first dropdown. Small but annoying problem!
I have two dropdowns, and each is its own form. Even though its coded like this: <form> (code) </form> <form> (code) </form> the second dropdown appears below the first, and I need it *next* to the first dropdown. Small but annoying problem!
Feb 2, 2001 #2 aljc Programmer Nov 24, 2000 29 GB try putting them in a table something like - <table> <tr> <td> <form> (code) </form> </td> <td> <form> (code) </form> </td> </tr> </table> Upvote 0 Downvote
try putting them in a table something like - <table> <tr> <td> <form> (code) </form> </td> <td> <form> (code) </form> </td> </tr> </table>