[css-d] Nested 100% min-height

2009-07-27 Thread Kit Grose
would be great). Cheers, Kit Grose iQmultimedia __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css

Re: [css-d] space in horizontal nav

2008-04-03 Thread Kit Grose
Matt, If the issue is only showing up in IE, try removing all the whitespace between the list items in the markup. - Kit __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ --

[css-d] IE6 - display: none bug (with testcase)

2008-04-03 Thread Kit Grose
with this specific workaround, and no obvious alternative workaround. If someone knows of one, please, please let me know! Cheers, Kit Grose Frontend Web Developer iQmultimedia [EMAIL PROTECTED] iqmultimedia.com.au __ css-discuss [EMAIL

[css-d] IE 6/Win Text line width expanding container

2007-11-18 Thread Kit Grose
beginning to think it's going to require absolute positioning and I'd really rather not go there with this layout Any thoughts would be appreciated, Kit Grose [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] IE 6/Win Text line width expanding container

2007-11-18 Thread Kit Grose
I thought so too initially, but I can't explain why it would affect that first line (ending in 'torn to shreds'). I'm prepared to leave it at overflow:hidden, rather than lay out a test case, since the client is already getting mate's rates. Thanks for your help, Kit

[css-d] Help with converting table layout to standards

2007-10-21 Thread Kit Grose
with the development). Cheers, Kit Grose __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported

Re: [css-d] Help with converting table layout to standards

2007-10-21 Thread Kit Grose
Well, I've fixed my problem for the most part. I simply used the trick where absolutely positioned elements have more than one vertical property set (which doesn't work in IE, but we're operating on a Firefox/Safari only assumption). So we've set the top to 2em, the bottom to 0, the left to

Re: [css-d] Odd Safari display problem...

2007-10-17 Thread Kit Grose
On 18/10/2007, at 10:18 AM, David Laakso wrote: Matt wrote: Check out the navigation and RSS link on the top right part of this page: http://www.scienceprogress.org/ Everything lines up fine in Firefox and IE-Win, but in Safari, the RSS icon drops below the navigation stuff and floats to

Re: [css-d] Is this possible?

2007-10-16 Thread Kit Grose
Simply put: yes it is. Set the pale yellow as the background image of the body (create a 1px- high sliver of yellow and position it with background: #fff url(../ images/myyellowsliver.gif) 140px 0 repeat-y; assuming you want 140px of white sidebar to the left (it's a guess)) Make a DIV for

Re: [css-d] Pure CSS drop-down menus aren't *good*

2007-10-15 Thread Kit Grose
thought required to decide a menu item). Here are some opinions, if you mind... Kit Grose wrote: G'day Jay, I've heard the request for pure CSS drop-down menus quite a lot, and rarely see people getting told what they should about how *bad* they are. Can you say better things

[css-d] Pure CSS drop-down menus aren't *good*

2007-10-14 Thread Kit Grose
G'day Jay, I've heard the request for pure CSS drop-down menus quite a lot, and rarely see people getting told what they should about how *bad* they are. CSS is designed as a method for styling visible items and laying them out relative to one-another. Drop-down menus are behavioural, and

Re: [css-d] Navlist Problems

2007-08-17 Thread Kit Grose
Richard; you've also left the browser's automatic left padding on the list and list items. To fix, it's simply: #navlist, #navlist li { padding-left: 0; /* or some other suitable amount */ } Cheers, Kit Grose iQmultimedia

[css-d] How do you show Selected Page in the navigation?

2007-08-16 Thread Kit Grose
Hi Craig, The easiest way to select the current page in navigation is to give each list item a unique ID, and to give the body tag the class of the section you're on: ... body class=contactus ul id=navigation li id=contactusContact Us/li li