Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
3 column layout proposals are needed!
Old 11-04-2008, 04:24 AM 3 column layout proposals are needed!
Skilled Talker

Posts: 96
Trades: 0
I am a beginning webmaster and need some help now! I am looking for any proposals or examples on how to perform a valid 3 column layout effectively using blocks!
__________________

Please login or register to view this content. Registration is FREE
- internet marketing program!

Please login or register to view this content. Registration is FREE
- get your website updated by professionals!

Please login or register to view this content. Registration is FREE
- domain and hosting coupons!

Last edited by 3DProf4online; 11-04-2008 at 04:32 AM..
3DProf4online is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-04-2008, 10:34 AM Re: 3 column layout proposals are needed!
Experienced Talker

Posts: 34
Trades: 0
You would do this by using CSS and div tags. This is a very simple layout that will definitely require tweaking on your part b/c I haven't even tested it yet, but this will get you started.

.left-column {
position: relative;
float: left;
}

.center-column {
position: relative;
float: center;
}

.right-column {
position: relative;
float: right;
}


<div class="left-column">
</div>
<div class="center-column">
</div>
<div class="right-column">
</div>
__________________

Please login or register to view this content. Registration is FREE
pingeyeg is offline
Reply With Quote
View Public Profile
 
Old 11-04-2008, 10:42 AM Re: 3 column layout proposals are needed!
Super Moderator

Posts: 1,584
Location: Kokkola, Finland
Trades: 1
there's some here
http://blog.html.it/layoutgala/
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 11-04-2008, 02:46 PM Re: 3 column layout proposals are needed!
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
All that positioning is NOT necessary.

You might want to look over the many layouts here:
http://css-discuss.incutio.com/?page=ThreeColumnLayouts
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-04-2008, 03:10 PM Re: 3 column layout proposals are needed!
Registered User

Posts: 78
Name: Joseph
Location: Texas
Trades: 0
Quote:
Originally Posted by pingeyeg View Post
You would do this by using CSS and div tags. This is a very simple layout that will definitely require tweaking on your part b/c I haven't even tested it yet, but this will get you started.

.left-column {
position: relative;
float: left;
}

.center-column {
position: relative;
float: center;
}

.right-column {
position: relative;
float: right;
}


<div class="left-column">
</div>
<div class="center-column">
</div>
<div class="right-column">
</div>
I would do this same thing but then put a big container around all of it and clear them.

.container{
clear:both;
}

.left-column {
position: relative;
float: left;
}

.center-column {
position: relative;
float: center;
}

.right-column {
position: relative;
float: right;
}

<div class="container"
<div class="left-column">
</div>
<div class="center-column">
</div>
<div class="right-column">
</div>
</div>

That should work and you'll be happy you put a container as you get into it.
josephcohen is offline
Reply With Quote
View Public Profile
 
Old 11-04-2008, 03:36 PM Re: 3 column layout proposals are needed!
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
The clear:both on #container is pointless and unnecessary - and it clears NOTHING. Using overflow there would be more to the point for clearing floats inside it.

Once again, position:relative on all 3 columns is NOT necessary.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-05-2008, 10:20 AM Re: 3 column layout proposals are needed!
Experienced Talker

Posts: 34
Trades: 0
Well then LadynRed, what would you do since you seem to have the solution, but have not said what it is yet?
__________________

Please login or register to view this content. Registration is FREE
pingeyeg is offline
Reply With Quote
View Public Profile
 
Old 11-05-2008, 10:23 AM Re: 3 column layout proposals are needed!
Experienced Talker

Posts: 34
Trades: 0
Well, LadynRed, to be quite honest, I don't like the method you chose from that website. It seems to be more work than is actually needed. It appears there are about 3 wrappers before you actually get to the columns. Maybe I'm wrong, but it seems my way it a little bit easier and I have been using this method for quite some time now to work cross browser.
__________________

Please login or register to view this content. Registration is FREE
pingeyeg is offline
Reply With Quote
View Public Profile
 
Old 11-05-2008, 03:00 PM Re: 3 column layout proposals are needed!
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
The link I posted led to a list of MANY 3-column solutions, I did not CHOOSE anything . The overuse of positioning causes many problems when it is frankly not necessary.

In addition, there is no property of float: center ! Float all the columns in one direction (left of right), or float 2 and leave one unfloated, depending on your needs. "Wrapping" the 3 column inside another div is almost always a good idea for many reasons.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-05-2008, 03:21 PM Re: 3 column layout proposals are needed!
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
Quote:
Originally Posted by pingeyeg View Post
.center-column {
position: relative;
float: center;
}
What is float: center supposed to do?
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is offline
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 11-20-2008, 09:06 AM Re: 3 column layout proposals are needed!
Average Talker

Posts: 19
Trades: 0
The best 3 column layout I found was at: http://matthewjamestaylor.com/blog/u...ail-pixels.htm

It has the advantages that it's fluid, no fixed height and allows for a header and footer. I've based a lot of my sites around this template.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Limotek is offline
Reply With Quote
View Public Profile Visit Limotek's homepage!
 
Reply     « Reply to 3 column layout proposals are needed!
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.65098 seconds with 12 queries