Recent content by computerguy!

  1. C

    Chrysler T&C 2005 - Sentry Key?

    I'm looking for one of two things for my Chrysler. The first, which is what I really want, is a way to disable the SKIM system. Yes, I realize this is a security feature, but it's one I'm unaccustomed to, and thus, I won't miss. Also, I can assure you that I also won't miss spending $200 for a...
  2. C

    What is HTML code to make everything disappear when submit button is clicked?

    <input type="submit" value="Submit" onclick="javascript:void (document.body.style. display='none')" /> Remove the line break between void and ( as well as style. and display. Hope that helps!
  3. C

    I need advanced HTML <input type=input ...> help.?

    First off, your input code should look like this <input type="text" name="PASSWORD_NAME" size="40" maxlength="256" id="passwordName" onkeydown="checkEnter(event)" /> And as for to see whete the user hits enter, skip using Javascript, and just do this. <form action="checkEnter(event)"> [input...
  4. C

    HTML/CSS format command ?? ..for web designers?

    This is how I always do it, will make you page 780px wide, and then x space on the edges. CSS-- body{margin:0;padding:0} #body{margin:0 auto;padding:0;border:solid black;border-width:0 1px; width:780px} HTML <body> <div id="body"> Content </div> </body>
  5. C

    i need help with coding for html?

    <table cellpadding="15" cellspacing="5" border="5px"> <tr><td>Column 1 Row 1</td><td>Column 2 Row 1</td></tr> <tr><td>Column 1 Row 2</td><td>Column 2 Row 2</td></tr> <tr><td>Column 1 Row 3</td><td>Column 2 Row 3</td></tr> <tr><td>Column 1 Row 4</td><td>Column 2 Row 4</td></tr> <tr><td>Column 1...
  6. C

    HTML Code - Image Links?

    Add this in your <head> <style type="text/css"> a{border:0} </style>
  7. C

    HTML - how do i go up a directory, i have a css sheet in the main area but...

    Use ../ ((dot)(dot)(forward slash)) So if you are in the directory index/about/ then to get to index, you would do something like: <link rel="stylesheet" type="text/css" href="../css/main.css" /> which will take you to the index folder, to the CSS folder, and then get a file named main.css.
  8. C

    Can anyone find out where you put the html coding in so it will show up on the website?

    Sounds like you got yourself a domain name, but no host, you'll have to buy a host as well. That site that you gave provides hosting! click on the web hosting link!
  9. C

    where can i find the soften tool in adobe photoshop CS4?

    Right click on the dodge tool, you'll get the three options!
  10. C

    Javascript question: <a href="something.php">Click here</a> When I mouseover "Click...

    In the head put this <style type="text/css"> .hand{cursor:pointer} </style> Your HTML is this. <a href="#" class="hand" onclick="function()">Click Here</a>
  11. C

    does anyone know of a web host that has HTML editing, like geocities did?

    If you're looking for a free one, use Freewebs, make sure you set it up with the HTML thingy. If you are wanting a real host, use Web Host 4 Life.
  12. C

    does anyone know of a web host that has HTML editing, like geocities did?

    If you're looking for a free one, use Freewebs, make sure you set it up with the HTML thingy. If you are wanting a real host, use Web Host 4 Life.
  13. C

    does anyone know of a web host that has HTML editing, like geocities did?

    If you're looking for a free one, use Freewebs, make sure you set it up with the HTML thingy. If you are wanting a real host, use Web Host 4 Life.
  14. C

    does anyone know of a web host that has HTML editing, like geocities did?

    If you're looking for a free one, use Freewebs, make sure you set it up with the HTML thingy. If you are wanting a real host, use Web Host 4 Life.
Back
Top