[WSG] [JOB] Full time web design job? (Sydney)

2003-11-06 Thread Mathew Patterson
Hi all, If you are interested in working as a web designer / experience designer on a full time basis for ASX in Sydney, please reply off list to me for more information. This is a full time position suitable for experienced designers with strong business and technical skills. Thanks, Mathew

Re: [WSG] hiding styles from mozilla

2003-11-06 Thread David McDonald
One technique that I use (when I have to) is this: /* begin box model hack */ height: 262px !important; height: 261px; height/**/:/**/261px; /* end hack */ Basically, Gecko based browsers will use the first value, IE 5.x/Win will apply the second value

RE: [WSG] hiding styles from mozilla

2003-11-06 Thread James Silva
Nice! Didn't even cross my mind... so simple :) Looks like my CSS-hack-free-run remains in tact for another day... thanks mate, James Silva Web Production Gruden Pty Ltd Tel: +61 02 9956 6388 Fax: +61 02 9956 8433 Email: [EMAIL PROTECTED] Web: http://www.grud

Re: [WSG] hiding styles from mozilla

2003-11-06 Thread James Ellis
Yep, I'm doing that as well. I contain the #overflow container in a another div with fixed width. | #container |#overflow| |       |#float| Then use a clear:both break under both to force a footer below the longest content. The overflow div should resize to the width of the container. HTH

Re: [WSG] OT: multiple IE versions

2003-11-06 Thread 5ub5
Here's another link on how to install multiple versions of IE (http://www.insert-title.com/web_design/?page=articles/dev/multi_IE). I found this through links on http://webstandards.org/buzz/archive/2003_11.html#000241 Chris * The discussion l

RE: [WSG] hiding styles from mozilla

2003-11-06 Thread James Silva
> It has a fixed height, auto width. If I set the width to fixed it (horiz > scroll) appears... Unfortunately the width needs to be set (as there's a floating div to form a second column) > Your other option is to repeatedly tap your client on the head with a > toffee hammer until they see the

RE: [WSG] hiding styles from mozilla [Virus checkedAU]

2003-11-06 Thread James Silva
Thanks Vik... I thought about something like that, but odds are, those selectors WILL be support in newer versions of browsers... i guess my question should have been "how can i apply a style ONLY to IE browsers?". Because bottom line, i dont really want the height property to be set for any bro

RE: [WSG] OT: multiple IE versions

2003-11-06 Thread James Gollan
Finally someone's done it - that's brilliant. The IE5.5 shows in the about IE section as being version 6, but it seems to be 5.5, as it misinterprets the box model. And you can run them open at the same time. Very cool. -Original Message- From: Mark Stanton [mailto:[EMAIL PROTECTED]

RE: [WSG] hiding styles from mozilla

2003-11-06 Thread James Silva
> You could try mixing 'n matching hacks from here: > http://centricle.com/ref/css/filters/ Thanks Lindsay... * html #pageText { height : 280px; } Did the trick. Height property is only set by IE browsers. Weird.. but it works :) James Silva Web Producti

Re: [WSG] hiding styles from mozilla

2003-11-06 Thread James Ellis
Hi James I don't get the horizontal scroller in either IE6 or Mozilla/FB or Opera7 (need to check Kafari)... here's the CSS: #stupidclient { border : 3px inset #aaa; background-color : #fff; height : 200px; width : auto; overflow : auto; padding : 2px; } It has a fixed height, auto width. If I

[WSG] OT: multiple IE versions

2003-11-06 Thread Mark Stanton
Sorry for the cross post. For those that haven't heard - someone has managed to get multiple version of IE running on their machine, someone else has grabbed the minimum files required to run IE5.01 and IE5.5 (about 3mb each) and posted them on their site. http://www.skyzyx.com/archives/

Re: [WSG] hiding styles from mozilla [Virus checkedAU]

2003-11-06 Thread Viktor . Radnai
This email is to be read subject to the disclaimer below. Hi James, How about using the > or + selectors to override the height rule? something like body div { height: 100%; } body > div { height: inherit; } Just an idea. I'm not even sure if Opera or IE/Mac supports these selectors. If t

RE: [WSG] hiding styles from mozilla

2003-11-06 Thread Lindsay Evans
James Silva wrote: > Is there a known CSS hack to hide styles from Mozilla based browsers? You could try mixing 'n matching hacks from here: http://centricle.com/ref/css/filters/ -- Lindsay Evans. Developer, Red Square Productions. [p] 8596.4000 [f] 8596.4001 [w] www.redsquare.com.au **

Re: [WSG] hiding styles from mozilla (Out of Office)

2003-11-06 Thread Sarah Adams
Hi, I will be away until Monday 10 November. If you require an urgent Intranet or Internet update please contact Peter Walker on ext 2667 or Meredith Jones on ext 2612. If you are contacting me regarding the Annual Report please contact Peter Walker on ext 2667, or Paul Johnston on ext 2965. T

[WSG] hiding styles from mozilla

2003-11-06 Thread James Silva
Hi guys, Is there a known CSS hack to hide styles from Mozilla based browsers? For those that are curious... I've got a client that is hell bent on having a fixed height site (sigh). They want the header/footer to remain fixed while the body content scrolls. Now, this is straight forward to ac