[SOLVED] 3 columns?

This is a discussion on "[SOLVED] 3 columns?" within the Web Page Design section. This forum, and the thread "[SOLVED] 3 columns? are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 4th, 2007, 20:29
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
[SOLVED] 3 columns?

http://www.leoncalder.com/clients/housing/
http://www.leoncalder.com/clients/housing/style.css

How come the 3 headings below the image aren't level? I'm pretty sure that's how it's supposed to be done(coding). Anyone spot the problem?

  #2 (permalink)  
Old Dec 4th, 2007, 20:48
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Try adding float:left; to #boxcontainer. I think the reason that this is happening is that the content above the left box is "shorter".
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
  #3 (permalink)  
Old Dec 4th, 2007, 20:55
SuperMember

SuperMember
Join Date: Jun 2007
Location: uk
Posts: 459
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

try replacing your code with the code below .

HTML: Select all
#left {
width: 352px;
height: 232px;
float: left;
padding: 19px;
}
  #4 (permalink)  
Old Dec 5th, 2007, 03:57
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: 3 columns?

Do you mean the blue colored button? It's perfect the way I looked at it.
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
  #5 (permalink)  
Old Dec 5th, 2007, 14:12
Marc's Avatar
Moderator

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Age: 15
Posts: 1,649
Thanks: 0
Thanked 8 Times in 8 Posts
Send a message via MSN to Marc Send a message via Skype™ to Marc
Re: 3 columns?

Have you fixed this issue now? I don't see any problems in Firefox.
  #6 (permalink)  
Old Dec 6th, 2007, 09:11
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Yep, dabs fixed the issue.

However, look again and now I need 3 boxs below them.

Also there's a small error with the picture in IE6.

Any ideas? Mostly need the box one sorted asap.
  #7 (permalink)  
Old Dec 6th, 2007, 09:19
Marc's Avatar
Moderator

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Age: 15
Posts: 1,649
Thanks: 0
Thanked 8 Times in 8 Posts
Send a message via MSN to Marc Send a message via Skype™ to Marc
Re: 3 columns?

The page is completely mucked up in Firefox. See my attachment.
Attached Images
File Type: jpg Housing Project Title Goes Here_1196936208390.jpg (39.6 KB, 6 views)
  #8 (permalink)  
Old Dec 6th, 2007, 10:08
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

... I know, that's what my post is about. It completely messed up when i added the other 3 boxs.

I can do it using another 3 divs easyily, maybe that's the best position.
  #9 (permalink)  
Old Dec 6th, 2007, 10:10
Marc's Avatar
Moderator

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Age: 15
Posts: 1,649
Thanks: 0
Thanked 8 Times in 8 Posts
Send a message via MSN to Marc Send a message via Skype™ to Marc
Re: 3 columns?

Have you cleared your floats from above?
  #10 (permalink)  
Old Dec 6th, 2007, 10:20
welshstew's Avatar
Lead Administrator

SuperMember
Join Date: May 2007
Location: inside the outside
Posts: 1,375
Blog Entries: 13
Thanks: 1
Thanked 14 Times in 12 Posts
Re: 3 columns?

you need to change your box content div to the followg:
HTML: Select all
<div id="boxcontainer">
    <div id="box1"/>
<div id="box2"/>
<div id="box3"/>
<div style="clear: both;"/>
    <div class="boxcontent">46546</div>
    <div class="boxcontent">46546</div>
    <div class="boxcontent">46546</div>
    </div>
and then remove the
Code: Select all
clear:both
on the boxcontent css
that should clean it up for you

edit: screen shot attached
Attached Images
File Type: jpg Untitled-1.jpg (84.7 KB, 14 views)
__________________
WelshStew
Lead Administrator

tierney rides tboard - uk site | xtreme wales - extreme clothing
If you think I've helped, click the "Thanks"
webforumz - facebook | LinkedIn
Last Blog Entry: Web Standards Curriculum Launched (Jul 8th, 2008)

Last edited by welshstew; Dec 6th, 2007 at 10:28. Reason: add screen shot
  #11 (permalink)  
Old Dec 6th, 2007, 11:50
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Woah! Stew, what's with your browser? Looks very... holiday-ish
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
  #12 (permalink)  
Old Dec 6th, 2007, 12:08
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Thanks a lot, I'll update it later.
  #13 (permalink)  
Old Dec 6th, 2007, 12:29
welshstew's Avatar
Lead Administrator

SuperMember
Join Date: May 2007
Location: inside the outside
Posts: 1,375
Blog Entries: 13
Thanks: 1
Thanked 14 Times in 12 Posts
Re: 3 columns?

Quote:
Originally Posted by PicoDeath View Post
Thanks a lot, I'll update it later.
No probs

Quote:
Originally Posted by swagner View Post
Woah! Stew, what's with your browser? Looks very... holiday-ish
Tis the season mas:
__________________
WelshStew
Lead Administrator

tierney rides tboard - uk site | xtreme wales - extreme clothing
If you think I've helped, click the "Thanks"
webforumz - facebook | LinkedIn
Last Blog Entry: Web Standards Curriculum Launched (Jul 8th, 2008)
  #14 (permalink)  
Old Dec 6th, 2007, 20:55
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

How come there's a bigger gap between the first box than the 2nd/3rd box?
  #15 (permalink)  
Old Dec 6th, 2007, 21:25
SuperMember

SuperMember
Join Date: Jun 2007
Location: uk
Posts: 459
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

If you remove

margin-right: 2px; from #boxcontent 1 and border-right:2px solid #ffffff; from #box 1 that should even things up.

then add margin-left:2px to #boxcontainer

Last edited by dab42pat; Dec 6th, 2007 at 21:39.
  #16 (permalink)  
Old Dec 6th, 2007, 22:22
SuperMember

SuperMember
Join Date: Jun 2007
Location: uk
Posts: 459
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

It may also be an idead to alter your footer gif to fit a width of 753px and adjust the footer div width to the same. That should line up everything.
  #17 (permalink)  
Old Dec 7th, 2007, 02:36
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: 3 columns?

Is it FF extension Welshstew? nice one..
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
  #18 (permalink)  
Old Dec 7th, 2007, 02:44
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Quote:
Originally Posted by monie View Post
Is it FF extension Welshstew? nice one..
Found it! Tinseltown
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
  #19 (permalink)  
Old Dec 7th, 2007, 03:03
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: 3 columns?

Installing....
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
  #20 (permalink)  
Old Dec 7th, 2007, 03:03
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: 3 columns?

Me too!
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
Closed Thread

Thread Tools

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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] multiple columns, text floats out of area... Best solution? alfandango Web Page Design 7 Apr 17th, 2008 12:00
[SOLVED] IE6 is not rendering my columns correctly Oak Web Page Design 26 Jan 13th, 2008 22:12
[SOLVED] Insert new row without knowing number of columns?? nate2099 Databases 2 Dec 27th, 2007 03:51
[SOLVED] List games diplay in columns Maska PHP Forum 3 Oct 2nd, 2007 11:31
2 columns alexgeek Web Page Design 2 Aug 14th, 2007 23:57


All times are GMT. The time now is 06:08.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43