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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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
  16. delpierro

    collapsible menu help

    You said: "It is first full, then contracts and then expands full again." You're right. I added that line because this sample is written in the expanded mode. So we have to contract it first (this is so fast i can't see that!!!) and then expand it with the speed variable. this is all i can do...
  17. delpierro

    collapsible menu help

    you can remove the first and the second line of my previous post. I hope it will help you!
  18. delpierro

    collapsible menu help

    Try this, it works for me: var contractall_default= false; //Should all submenus be contracted by default? (true or false) slash_expandall() var speed = 100; var menu, titles, submenus, arrows, bypixels; var heights = new Array(); var n = navigator.userAgent; if(/Opera/.test(n)) bypixels =...
  19. delpierro

    Wan't to know wich button the user pressed.

    Please can someone help me with this. The first frame i called 'side' and contains a little menu The second frame is the content of the choosen menu-item. I want to know if a user pressed the 'add record' button from the menu (side-frame) or the 'save to database' button from the content-frame...
  20. delpierro

    collapsible menu help

    You want to show the slide of the menu if the page loads? you might try to change the function: function slash_expandall(){ if (typeof menu!="undefined"){ for(i=0; i<Math.max(titles.length, submenus.length); i++){ var nr = submenus[i].getElementsByTagName("a").length*bypixels...

Part and Inventory Search

Back
Top