View Full Version : Layout Help


ucantparkhere
12-06-2004, 03:38 AM
Okay.

http://www.freewebs.com/ucantparkhere/testing.htm

Thats the site. On this layout, the place where it says Title on the text boxes should be a different colored background. How do I fix that???

Also, on the bottom of that bottom text box, theres an extra line. What the heck is up with that??? How do I get rid of it?

Rosey
12-06-2004, 03:48 AM
you're coding is a big mess. You don't have any of the opening tags you need.
You don't need all those style tags, just one with everything in it.
Since you are using css, make ids or class in your css and refer back to them in your table.
I would look over lissa's site for the basics of html.

your document should look like this:

<html>
<head>
<title> whatever</title>

<style type="text/css">

css here


</style>

</head>

<body>

<table>
<tr><td>

blahblahblbha

</td></tr>

<tr><td>

blah blah blah blah


</td></tr>
</table>

</body>
</html>

Use your css to make your headers, in your css put this:

.header {font-family:arial, tahoma;
font-size:12px;
color:#hexcode; }

and whatever else you want in it and then in your <td> tag or your span put class="header"

It will make things a lot easier to change when you want to change layouts.

HOpe that helped get you started on the right track.

ucantparkhere
12-06-2004, 04:08 AM
Why does html have to be so hard? lol. I really don't understand what i'm supposed to do. and i don't want to annoy you. But where do i put my html?

Rosey
12-06-2004, 04:13 AM
in the body part. the css part goes in between the <head> and </head> tag.

Take the time to look over lissa's site, it will be worth it.