Re: CSS: question.. overflow..

2009-08-22 Thread Paul Ihrig
i dont know seems like left left right works. left left left would too. On Sat, Aug 22, 2009 at 10:09 AM, Michael Grant wrote: > > Why not just float them all left? That's what I usually do. Float them all > left with proper widths inside a container div and then the div below (the > footer) you

Re: CSS: question.. overflow..

2009-08-22 Thread Michael Grant
Why not just float them all left? That's what I usually do. Float them all left with proper widths inside a container div and then the div below (the footer) you just clear:left on it and bob's your uncle. On Sat, Aug 22, 2009 at 9:48 AM, Dr. Who wrote: > > well i couldnt stop thinking about it

Re: CSS: question.. overflow..

2009-08-22 Thread Dr. Who
well i couldnt stop thinking about it.. worked on trying to fix till 11:30 last night this morning tore it all apart and started over. think i have a solution. float left left right http://www.rittal-corp.com/xxx/pi5.cfm now to comment the hell out of it, and then think about how to update the e

Re: CSS: question.. overflow..

2009-08-21 Thread Paul Ihrig
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate looks fine. but if the main page content changes it moves... http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=Window Kit top:-255px; would need to be calculated

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
It seemed right when I checked the link after you posted. On Fri, Aug 21, 2009 at 2:26 PM, Dr. Who wrote: > > scratch that.. > grr.. > > ~| Want to reach the ColdFusion community with something they want? Let them know on th

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
scratch that.. grr.. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:302381

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
also this was very helpful http://www.barelyfitz.com/screencast/html-training/css/positioning/ and yes my code is ugly.. thanks for the help. ~| Want to reach the ColdFusion community with something they want? Let them know on

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
ok.. i "think" this does it... #rightColumn { float:right; position:relative; left:5px; top:-255px; width: 190px; height:auto; background-color: #E6F3F6; border: 2px solid #FF; } #rightColumnContent { margin: 0; te

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
got ride of the absolute stuff, now it is below the main section... fark.. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion

Re: CSS: question.. overflow..

2009-08-21 Thread Zaphod Beeblebrox
just realized that you have your #rightColumn absolute positioned which takes it out of the document flow. I don't think you can ever "clear" that anymore. You need to float it. On Aug 21, 2009, at 12:01 PM, Dr. Who wrote: > > ok i changed cfml comment to html so you can see ending divs >

Re: CSS: question.. overflow..

2009-08-21 Thread Dr. Who
ok i changed cfml comment to html so you can see ending divs http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate tried the clear br thing, no luck ~| Want to reach the ColdFusion com

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
Scratch that. Not the right place. Hang tight. I'm formatting the code to see what's going on. On Fri, Aug 21, 2009 at 12:45 PM, Michael Grant wrote: > Good God. That code is horrible, no wonder it's hard to figure out what's > going on. > > I believe if you add just before the above id="foo

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
That link still exhibits the behaviour he's trying to solve. On Fri, Aug 21, 2009 at 12:45 PM, Paul Ihrig wrote: > > > http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate > > ~|

Re: CSS: question.. overflow..

2009-08-21 Thread Michael Grant
Good God. That code is horrible, no wonder it's hard to figure out what's going on. I believe if you add just before the above it will solve it. It's kind of hard to tell though since your code isn't tabbed properly and it's crazy to try to sift through On Fri, Aug 21, 2009 at 12:17 PM, Dr. W

Re: CSS: question.. overflow..

2009-08-21 Thread Paul Ihrig
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CSS: question.. overflow..

2009-08-21 Thread Zaphod Beeblebrox
if you make your ".clearing" div 1px high, it will actually clear it. I thought I remember something about 0px divs not ever being rendered. On Aug 21, 2009, at 11:17 AM, Dr. Who wrote: > > http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate

CSS: question.. overflow..

2009-08-21 Thread Dr. Who
http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate if you collapse the nav on left side the right side sticks out the bottom.. i dodnt want to keep upping min-height: on #leftColumn which i shouldn't even use.. i swear i have fixed this a few