
Originally Posted by
Sammacha
WOW! you did that the hard way!!
Actually, I just turned off javascript for a few seconds and right-clicked.
Read more.

Originally Posted by
Sammacha
hmm yes I suppose I could do a Css layout instead of using tables, the only thing is that i'm not too familiar with doing it and I have yet to really try :/
Look at some of the css layouts here on DD. And a single, centered column is very easy anyway:
page.html
Code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div id="singlecolumn">
<!-- Put all your content in here. -->
</div>
</body>
</html>
stylesheet.css
Code:
#singlecolumn{
width: 760px; /* define a width or it won't work. you could use a percentage also. */
margin: 0 auto; /* then, this centers it */
}
Bookmarks