Well, if you want to use CSS in a website, then first you're gonna have to figure out how CSS works. But first, lose your tables. They're outdated for website layout, and you can achieve something much better using CSS divs. But back to your question, putting the code
Code:
#container {
margin:0 auto;
width:860px;
bottom:0;
}
Ain't gonna help you one bit. Because all CSS does is style HTML elements. So for that to work, you are going to have to put
HTML Code:
<div id="container"></div>
around the elements that you want to have the style applied to. Here's a helpful link if you want to know some more about CSS:
http://www.w3schools.com/css/
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|