|
| |
|
|
BobbyDouglas
Posts: 5440 Joined: 5/15/2003 From: Arizona Status: offline
|
XHTML/CSS Forms - 10/7/2004 12:11:56
Anyone have good examples of forms made in xhtml/css?
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
BobbyDouglas
Posts: 5440 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: XHTML/CSS Forms - 10/7/2004 12:24:37
I searched on Google and didn't quite get good results. I would think XHTML / CSS Form would bring up some good pages. Google is slipping. Time for class now, but hopefully others will have some more examples when I get back. Thanks Bobby.
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
Giomanach
Posts: 6086 Joined: 11/19/2003 From: England Status: offline
|
RE: XHTML/CSS Forms - 10/7/2004 15:14:22
You really don't need to search for this Bobby.... Just make sure you apply CSS to the following HTML elements: input select textarea radio checkbox Or apply classes to each of them....Then you can code the form in XHTML as you would normally... http://giomanach.wm-talk.com/misc/webs/iog-new/contact.php - the form there is XHTML formatted with CSS... (PHP generated) HTH
< Message edited by Giomanach -- 10/7/2004 15:29:36 >
_____________________________
|
|
|
|
BobbyDouglas
Posts: 5440 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: XHTML/CSS Forms - 10/7/2004 15:56:50
The formatting for the link you posted is a very simple form. I was going to do something rather complex. I figured a table would need to be used for what I want to do, but hoped there would be some online examples of what others accomplished.
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
Giomanach
Posts: 6086 Joined: 11/19/2003 From: England Status: offline
|
RE: XHTML/CSS Forms - 10/7/2004 16:19:55
Simple or complex...the CSS implentation process is the same.
_____________________________
|
|
|
|
d a v e
Posts: 4029 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: XHTML/CSS Forms - 10/7/2004 16:20:18
there's a snippet here http://www.alistapart.com/articles/practicalcss/ scroll down a wee bit... there might be something on eric meyers site
_____________________________
David Prescott Gekko web design
|
|
|
|
BobbyDouglas
Posts: 5440 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: XHTML/CSS Forms - 10/8/2004 10:05:30
All these links help so far. I guess instead of using tables/cells you can just use <p>'s for everything- or so it seems. Thanks for the help!
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
BobbyDouglas
Posts: 5440 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: XHTML/CSS Forms - 10/11/2004 1:45:40
Here is what I am working with right now, however I would like to have three columns to place information in. Maybe someone has a suggestion for this. CODE <html>
<head>
<title></title>
<style>
div#titlenav {
background-color:#EFF4F8;
text-align:left;
margin-top:0px;
padding:5px;
border:1px solid #375A8B;
}
</style>
</head>
<body>
<div id="titlenav">
<p>City:</p>
<p><input type="text" name="City" size="20"></left></p>
<p>Square Footage:</p>
<p><select size="1" name="SquareFootage">
<option selected>Any Square Footage</option>
<option>1+</option>
<option>2+</option>
<option>3+</option>
<option>4+</option>
<option>5+</option>
<option>Studio/Lot</option>
</select></left></p>
<p># of Beds:</p>
<p><select size="1" name="Beds">
<option selected>Any Number</option>
<option>1+</option>
<option>2+</option>
<option>3+</option>
<option>4+</option>
<option>5+</option>
<option>Studio/Lot</option>
</select></left></p>
<p>Price:</p>
<p><left> <select size="1" name="Price1">
<option>$0.00</option>
<option>$25,000</option>
<option>$50,000</option>
<option>$75,000</option>
<option>$100,000</option>
<option>$125,000</option>
<option>$150,000</option>
<option>$175,000</option>
</select> to: <select size="1" name="Price1">
<option>$0.00</option>
<option>$25,000</option>
<option>$50,000</option>
<option>$75,000</option>
<option>$100,000</option>
<option>$125,000</option>
<option>$150,000</option>
<option>$175,000</option>
</select></p>
</div>
</body>
</html>
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
Giomanach
Posts: 6086 Joined: 11/19/2003 From: England Status: offline
|
RE: XHTML/CSS Forms - 10/13/2004 0:15:15
Try something like this: <html>
<head>
<title></title>
<style>
div#titlenav {
background-color:#EFF4F8;
text-align:left;
margin-top:0px;
padding:5px;
border:1px solid #375A8B;
}
p{
display: inline;
}
p.column{
padding-right: 50px;
}
</style>
</head>
<body>
<div id="titlenav">
<p>City:</p>
<p class="column"><input type="text" name="City" size="20"></left></p>
<p>Square Footage:</p>
<p class="column"><select size="1" name="SquareFootage">
<option selected>Any Square Footage</option>
<option>1+</option>
<option>2+</option>
<option>3+</option>
<option>4+</option>
<option>5+</option>
<option>Studio/Lot</option>
</select></left></p>
<p># of Beds:</p>
<p class="column"><select size="1" name="Beds">
<option selected>Any Number</option>
<option>1+</option>
<option>2+</option>
<option>3+</option>
<option>4+</option>
<option>5+</option>
<option>Studio/Lot</option>
</select></left></p>
<br><br>
<p>Price:</p>
<p class="column"><select size="1" name="Price1">
<option>$0.00</option>
<option>$25,000</option>
<option>$50,000</option>
<option>$75,000</option>
<option>$100,000</option>
<option>$125,000</option>
<option>$150,000</option>
<option>$175,000</option>
</select> to: <select size="1" name="Price1">
<option>$0.00</option>
<option>$25,000</option>
<option>$50,000</option>
<option>$75,000</option>
<option>$100,000</option>
<option>$125,000</option>
<option>$150,000</option>
<option>$175,000</option>
</select></p>
</div>
</body>
</html>
_____________________________
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|