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: > > > >

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:

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

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;

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] Cascade Image override ?

2016-07-27 Thread Karl DeSaulniers
Have you checked inspect element to see how the browser is handling it? That is the first place I would check and test. Also, are you sure you're clearing the cache on you browser before viewing edits? I have had this cause issues on edits before. The edits were there, but I saw a cache file.

Re: [css-d] Cascade Image override ?

2016-07-27 Thread Crest Christopher
I don't see how the method I'm using shouldn't work. > Tom Livingston > Wednesday, July 27, 2016 4:02 PM > On Wed, Jul 27, 2016 at 3:31 PM, Crest Christopher < > > > I just used this in a test: > > @media screen and (min-width: 480px){ > .test{ > position: relative; >

Re: [css-d] Cascade Image override ?

2016-07-27 Thread Crest Christopher
Tom Livingston wrote: > > On Wed, Jul 27, 2016 at 3:31 PM, Crest Christopher < > crestchristop...@gmail.com> wrote: > >> >> Correct me if I'm wrong but shouldn't a rule further down the cascading >> over ride any previous rules before ? >> >> 1st. >> #inner { >> position:relative; >> >>

Re: [css-d] Cascade Image override ?

2016-07-27 Thread Tom Livingston
On Wed, Jul 27, 2016 at 3:31 PM, Crest Christopher < crestchristop...@gmail.com> wrote: > Correct me if I'm wrong but shouldn't a rule further down the cascading > over ride any previous rules before ? > > 1st. > #inner { > position:relative; > > >

Re: [css-d] Cascade Image override ?

2016-07-27 Thread Tom Livingston
Link? On Wed, Jul 27, 2016 at 3:31 PM, Crest Christopher < crestchristop...@gmail.com> wrote: > Correct me if I'm wrong but shouldn't a rule further down the cascading > over ride any previous rules before ? > > 1st. > #inner { > position:relative; > > >