Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
simple html question
Name: nunyabiznaz Date: November 30, 2006 at 17:31:37 Pacific OS: winxp CPU/Ram: p4 Product: dell
Comment:
Can I have a heading centered in its table cell, but the text below it left-aligned with it any easy way? thanks.
Name: robber2 Date: November 30, 2006 at 22:26:51 Pacific
Reply:
i don't recommend it, but this works: [code] <html> <body> <table width="100%" border="10px"> <tr> <td> <center> <h1>Maybe </h1> </center>
like this?</p> </td> <td> <center> <h1>Maybe </h1> </center>
like this?</p> </td> <td> <center> <h1>Maybe </h1> </center>
like this?</p> </td> </tr> </table> </body> </html> [/code]
0
Response Number 2
Name: robber2 Date: November 30, 2006 at 22:28:19 Pacific
Reply:
add the start tags for "p" and you're good to go.
0
Response Number 3
Name: smumdax Date: December 1, 2006 at 19:04:55 Pacific
Reply:
Heading doesn't give you much control over it's appearance. Why not use 2 different DIVs and align the first one centered (that woud be your actual Heading) and the other one aligned left.
P gives you line breaks that you might not necessarely want.
On the other hand, if you want to keep you heading and not use DIVs, you could also simply put the heading in it's seperate cell, and the other cell under it would contain the rest of the text you want aligned left.
Summary: Hey guys. I'm building a MySpace webpage using HTML and I'm not sure how to insert Enter/Return spaces to separate two different things. Simply pressing the Enter key to separate two different sets of...
Summary: Thanks Alot Mechael It worked perfectly and is much more simple to understand now. Honestly speaking I hardly understood the other script but it worked a little bit, yours is much more simple and WORK...
Summary: Hello, I have created a simple HTML for my work. I have a "Submit" button located on the bottom of the form. I would like tihs button to send the completed form to an email address. Any ideas on how I...