Topic: (I hope..) a simple cSS question - 'table' layout (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: |
posted 10-16-2003 07:30
http://65.50.81.109/tbs/template.asp |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 10-16-2003 08:26
I'm afraid to say that I don't think this can be done with CSS currently. Give it some time to see if anyone disagrees with me, though. |
Bipolar (III) Inmate From: |
posted 10-16-2003 13:53
as much as I wanted to avoid it, opt'd for a table-layout for the time being. Just cleaned up/re-did the old template by hand which somehow, managed to use like, 12 different table cells and a zillion small graphic files and drove me NUTS when using it. |
Paranoid (IV) Mad Scientist From: KC, KS |
posted 10-16-2003 17:10
Yep, you'd think that would be a simple thing to do but from what I gathered back when I was trying to do the same thing it's just not possible with CSS. |
Maniac (V) Inmate From: California |
posted 10-16-2003 21:18
Yup, this is a tough one. Don't think we'll be able to find a quick CSS solution for this but... |
Bipolar (III) Inmate From: |
posted 10-16-2003 22:22
Hrmm, was thinking. - What about using javascript? |
Maniac (V) Mad Scientist From: the west wing |
posted 10-17-2003 06:41
Damn nay-sayers. code: #big_box { width : 740px; background : #000; }
code: #left_side { width : 153px; float : left; }
code: #right_side { width : 587px; float : right; background : #fff;}
code: <div id="big_box"><div id="left_side">---left side content--</div><div id="right_side">--right side content--</div></div>
|
Paranoid (IV) Inmate From: Den Haag, Netherlands |
posted 10-17-2003 07:31
Blah .. ignore me I was rambling and suddenly realised it ... unfortunately "delete-post" only works for forum moderators ... |
Paranoid (IV) Mad Scientist From: KC, KS |
posted 10-17-2003 16:37
Man, his example is gone but I don't think yours would work Steve. He has a button or something at the bottom of his left div that he wants to always be at the bottom near where the content div ends. |
Maniac (V) Mad Scientist From: the west wing |
posted 10-17-2003 21:16
Even then, krets, just make another div at the bottom which uses a background image of black on the left, white on the right, left-align, put the image in. |
Maniac (V) Inmate From: California |
posted 10-17-2003 21:18
Pssst, Krets... that's twItch^ |
Paranoid (IV) Mad Scientist From: KC, KS |
posted 10-17-2003 21:24
Yes, but I know who the man behind the curtain is... |
Maniac (V) Mad Scientist From: the west wing |
posted 10-17-2003 23:19
Of course it would work. It just takes an extra id for positioning. |