Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Les Mizzell
> I'm also not a huge iFrame fan, but I have used the method described on > dynamic drives > link below for dynamic resizing of iFrames in the past. I've not used iFrames at all myself (yet). An iFrame doesn't inherit anything (CSS) in the cascade from the page calling it? If that's the cas

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Jenine Cordon
u/cti/ [EMAIL PROTECTED] (208) 885-2121 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Andrews Sent: Wednesday, November 15, 2006 5:33 AM To: css-d@lists.css-discuss.org Subject: Re: [css-d] Disable CSS for a page fragment An iframe would solve th

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Dave Goodchild
In that case you may need to compromise a little and regain control over colour, background-color, padding etc. It would help if we could see some code! __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/c

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Scott Andrews
with this method. ...portals create some of the oddest UI issues... -Scott -Original Message- From: francky [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 15, 2006 8:28 AM To: Scott Andrews Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Disable CSS for a page fragment Hi

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Dave Goodchild
I would go with the earlier advice and null out all the values you will know apply to that element, using a class called .zeroCSS for example. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 i

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Scott Andrews
EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barney Carroll Sent: Wednesday, November 15, 2006 5:02 AM To: css-d@lists.css-discuss.org Subject: Re: [css-d] Disable CSS for a page fragment Stephan Wehner wrote: > IFrame? An iframe has its own body (I'm not exactly clear on governing

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread francky
Scott Andrews wrote: >We have a site that embeds an HTML email message inside a page that uses >CSS for layout. Currently, the styles from the containing site are >affecting the display of the embedded message. Is there a way to turn >off CSS and the cascade for content inside a block level elem

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Barney Carroll
Barney Carroll wrote: > Maybe I've misunderstood - are you trying to remove styles called > by/imbedded in the email itself? That'd be a little more finicky, > but I imagine working from the basis of the iframe would already allow > you to work on a sounder conceptual basis from there... Sorry f

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Barney Carroll
Stephan Wehner wrote: > IFrame? An iframe has its own body (I'm not exactly clear on governing factors here), and is effectively a window onto a new page. There are many arguments against frames as general layout practice but in this case it seems completely appropriate - any other method would

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Jay B. Harlow
: Tuesday, November 14, 2006 12:31 PM To: css-d@lists.css-discuss.org Subject: [css-d] Disable CSS for a page fragment We have a site that embeds an HTML email message inside a page that uses CSS for layout. Currently, the styles from the containing site are affecting the display of the embedded

Re: [css-d] Disable CSS for a page fragment

2006-11-15 Thread Stephan Wehner
IFrame? Presumably you would only need to undo those styles that "are affecting the display of the embedded message." Maybe those are not that many? Is there more than color, font, background, padding, margin, border, ul, ol, dd,... ? Just about 20 lines or so. It doesn't look like a "poor hack"

Re: [css-d] Disable CSS for a page fragment

2006-11-14 Thread Scott Andrews
ovember 14, 2006 1:51 PM To: Scott Andrews Subject: Re: [css-d] Disable CSS for a page fragment why not try just to override the rules on that page by giving the email message an id and a more specific rule that will overrride the other rules body#blahPage #emailMessage p{border:1px solid red;

[css-d] Disable CSS for a page fragment

2006-11-14 Thread Scott Andrews
We have a site that embeds an HTML email message inside a page that uses CSS for layout. Currently, the styles from the containing site are affecting the display of the embedded message. Is there a way to turn off CSS and the cascade for content inside a block level element? The only thing I can