Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by delpierro

  1. delpierro

    text and textboxes position

    I tried: <label for="T1">Address:</label><input type="text" name="T1" /> <label for="T2">Name:</label><input type="text" name="T2" /> <label for="T2">Age:</label><input type="text" name="T3" /> and....it worked. Now IE and FF or exactly the same. Many thanks for your help and time
  2. delpierro

    text and textboxes position

    I tried your solution Foamcow, but no luck :( this is what i changed: label { clear: both; float: left; display: block; width: 15em; margin-top: -1em; font-weight: bold; } input { position: relative; top: -1.4em; left: 8em; display: block...
  3. delpierro

    text and textboxes position

    But why is the length of the label in IE perfect, and in Mozilla FireFox to short? any idea?
  4. delpierro

    text and textboxes position

    Thanks Vragabond I did it like this: label { clear: both; float: left; display: block; width: 15em; margin-top: -1em; font-weight: bold; } input { position: relative; top: -1.4em; left: 8em; display: block; } <label for="T1">Adress:<input type="text" name="T1" size="20"></label>...
  5. delpierro

    text and textboxes position

    How can i place all the textboxes at the same left-margin? This is the css: p { margin-left: 40px; } input { margin-left: 150px; } this is the html: <p> Adress:<input type="text" name="T1" size="20"><br> Name:<input type="text" name="T2" size="20"><br> Age:<input type="text" name="T3"...
  6. delpierro

    collapsible menu help

    I would like to change this menu in some ways: 1: If a menu-item has not sub-items (Like 'Home' or 'Login') the user can click on it an has a link, like home.htm or login.htm 2. Sub-items do have a hover affect. It would be nice that also the menu-items had this nice affect. I tried to modify...
  7. delpierro

    loop through information from a database

    You can try this: While not oRs.EOF Response.write "<br />" & oRs ("serverName") & oRs ("serverLocation") Response.write "Select This Server:" Response.write "<input type="radio" name= "serverSelect" id = "serverName" value="serverSelect" />" oRs.MoveNext Wend
  8. delpierro

    Server.ScriptTimeout

    I found it: Thank you Sheco! You put me in the right direction! I deleted: if right(Typering,1) <> "," then Typering = Typering & ", #" end if and changed: For i = 0 to Ubound(array_checkbox) - 1 into: For i = 0 to Ubound(array_checkbox)
  9. delpierro

    Server.ScriptTimeout

    i don't get it. I copied my code in visualBasic so i can debug it. Then everthing runs fine i don't get a infinate loop...
  10. delpierro

    Resizing an Iframe based on its content's height

    Why do you u use a interval. Window.onresize should work! Try this code: <html> <head> <script type="text/javascript"> window.onload = changeWindowSize(); window.onresize = changeWindowSize(); function changeWindowSize() { var totalWidth; if (document.body) totalWidth =...
  11. delpierro

    Basic login form validation problem

    onclick = "this.form.submit()
  12. delpierro

    Server.ScriptTimeout

    If 1 record matches the ID then everthing goes fine if more than 1 record matches the ID i got Server.ScriptTimeout Does somebody has any idea why this happens? dim ID dim Typering dim x dim checkbox(30) ID = request.Querystring("ID") Connection.open database Recordset.open "Select * FROM...
  13. delpierro

    collapsible menu help

    Very nice modifications HappyTiger. I would like to change this menu in some ways: 1: If a menu-item has not sub-items (Like 'Home' or 'Login') the user can click on it an has a link, like home.htm or login.htm 2. Sub-items do have a hover affect. It would be nice that also the menu-items...
  14. delpierro

    Wan't to know wich button the user pressed.

    thanks, this will help me!!
  15. delpierro

    Wan't to know wich button the user pressed.

    before redirect

Part and Inventory Search

Back
Top