Re: [css-d] Cascade Image override ?

2016-07-28 Thread Tom Livingston
On Thursday, July 28, 2016, Philippe Wittenbergh wrote: > > > On Jul 29, 2016, at 12:39 AM, Tom Livingston > wrote: > > > > This: > > > > background-image:none,none,url("images/bg_paper.Hi.jpg"); > > > > should work. Same as I did here: > > > > @media screen and (min-width: 480px){ > > .test{ >

Re: [css-d] Cascade Image override ?

2016-07-28 Thread Philippe Wittenbergh
> On Jul 29, 2016, at 12:39 AM, Tom Livingston wrote: > > This: > > background-image:none,none,url("images/bg_paper.Hi.jpg"); > > should work. Same as I did here: > > @media screen and (min-width: 480px){ > .test{ > position: relative; > background-image: url("img/img1.jpg"), url("img/img2.jp

Re: [css-d] Cascade Image override ?

2016-07-28 Thread Tom Livingston
On Thu, Jul 28, 2016 at 10:42 AM, Karl DeSaulniers wrote: > Hi Crest, > I don't think you can do it that way. > > > background-image:none,none,url("images/bg_paper.Hi.jpg"); > > For pseudo resetting of background-image you have to declare the reset > separate and before the new background-image w

Re: [css-d] Cascade Image override ?

2016-07-28 Thread Karl DeSaulniers
Hi Crest, I don't think you can do it that way. > background-image:none,none,url("images/bg_paper.Hi.jpg"); For pseudo resetting of background-image you have to declare the reset separate and before the new background-image with url(I believe). try this. ... background-image:none; background-im

Re: [css-d] Cascade Image override ?

2016-07-28 Thread Crest Christopher
The beginning of the style sheet; position:relative; background-image:url("l2b_innertop.png"),url("l2b_innerfooter.jpg"),url("background-paper.jpg"); Further down the cascade within a break point position:relative; background-image:none,none,url("images/bg_paper.Hi.jpg");

Re: [css-d] rendering of icon in Windows browsers

2016-07-28 Thread Sara Haradhvala
You led me to the right solution - thanks for letting me know that I wasn’t using the right character. The actual Athelas character did not have unicode. I found out I could access it by using a regular text character and transforming it with "font-feature-settings". > On Jul 27, 2016, at 7: