Click to See Complete Forum and Search --> : Is this possible?


stargal98
08-04-2003, 12:33 PM
I want to add a form to this graphic, right next to the button. I have a feeling that I'll have to use CSS and absolute position. But how would I insert this into the graphic? Could I just use the z-index?

nkaisare
08-04-2003, 01:13 PM
Is this what you are looking for?
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_legend
You may use image-replacement like the tutorial by Doug Bowman (http://www.stopdesign.com/articles/css/replace-text/)

To have an image instead of default button, you can use
<input type="image" name="submit" src="track.gif" alt="Track">

Does this answer your question?
Niket

stargal98
08-04-2003, 01:26 PM
Thank you for the resources! I will most likely have to redo the box, as I cannot find a particular way to do what I wish. I will utilize one of the two methods you listed. Thank you!

Josh
09-02-2003, 12:33 AM
See if this helps...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>UPS Tracking</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="author" content="Joshua J Mallory (clonemaster@email.com)" />
<style type="text/css">
form {
background-image: url(untitled-1.gif);
background-repeat: no-repeat;
padding: 183px 10px 10px 30px;
width: 396px;
height: 250px;
}
input.submit {
margin-left: 33px;
}
</style>
</head>
<body>
<form action="">
<input type="text" /> <input type="submit" class="submit" />
</form>
</body>
</html>

Let me know if it works for you. Here's the screenshot...