yellowled wrote:
a. I don't think "Go wide/slim" is a good description for this. Maybe it's just too brief to get what it's actually doing. My suggestion would be "Wide/slim view (of this entry)" or something, but maybe someone else can come up with something better.
b. You really shouldn't use a table for the content, even if it's way easier.
c. You do realize that this will expand to any browser window's width, right? Might become unreadable in bigger browser windows.
YL
Thanks for the feedback YellowLED - I was hoping you'd spot this post and have a look at it
Item a: yeah, good point, I wasn't feeling too creative when I came up with that one...that will change I think in the very near future to something a lot more descriptive, such as what you've suggested.
Item b: I put fought a good battle against the i3 layout, trying hard to be as unobtrusive as possible, as cross-browser friendly as possible, and introduce as little (or no) browser-specific CSS as possible. Surrounding {$CONTENT} in a table was an unfortunate means to an end, and my last ditch effort to get it done, and move on.
I'm totally open to suggestions - the problem (trying to remember here...) was that I could achieve a fluid layout in FF, but the post heading (the stuff inside of .post.date and .post.title) ended up behind #content in IE6 - or - .post.title refused to stretch the full width.
The only way I could get .post.date and .post.title to show up in IE6 on top was to give #content a fixed width. Setting z-index, etc made no difference. Likewise, I got a great layout in IE6 by floating .post.title and .post.date, setting width:auto and doing one other thing which I can't remember now, but then FF completely blew apart.
There were about 1000 iterations tested, and finally resorted to stuffing $CONTENT into a table. I'm sure there is a better, pure CSS way to achieve this - I just didn't find the right combination of properties.
Item c: Yes, the fluid width (fit to browser) effect is what I was after. Mainly, I was getting frustrated by the fact that code snippets in my posts were wrapped, making them hard to read - you see that sort of thing all over the Net and it really bugs the hell out of me. So, without messing with overflow and scrollbars in narrow columns of content, I wanted something that gave me "the big picture".
Thanks for the feedback, it's much appreciated!
Adam