Forum Moderators: open

Message Too Old, No Replies

3 COL layout with center col as TH? (SEO)

         

JAB Creations

5:27 am on Aug 15, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I'm trying to figure out how to make a three colomn layout with the center colomn having it's code at the top (TH) but displayed in the center.

tedster

6:07 am on Aug 15, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



A variation on this, perhaps?

[webmasterworld.com...]

JAB Creations

7:45 am on Aug 15, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Could this be achieved using floating divs perhaps?

encyclo

12:23 pm on Aug 15, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I depends whether you need a footer after the three columns or not. If you are happy to have the footer just within the center column, then just have your content in a centered
div
with appropriate left and right margins, and use
position:absolute;
to place the left and right columns in their respective places.

An ultra-simple example:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>simple 3 col layout</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
margin:0;
padding:0;
}

#left {
position:absolute;
left:10px;
top:10px;
width:150px;
background:yellow;
}

#content {
background:green;
margin:10px 180px;
}

#right {
position:absolute;
right:10px;
top:10px;
width:150px;
background:lime;
}
</style>
</head>
<body>

<div id="content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</div>

<div id="left">Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</div>

<div id="right">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</div>

</body>
</html>

JAB Creations

1:06 pm on Aug 16, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Rock on encyclo! I should have thought of this before, arhiving. :-)