[css-d] z-index of background images

2015-09-20 Thread Crest Christopher
Unfortunately it's not possible to change the z-index of a multiple background image; anyone have any suggestions as to how, if at all, this can be done ? -- .(-. Christopher .-). __ css-discuss

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
Yes On Sunday, September 20, 2015, Crest Christopher wrote: > In terms of background images order ? > > Tom Livingston wrote: > > The order you have them in the CSS controls their stack order. > > On Sunday, September 20, 2015, Crest Christopher < >

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
I have multiple background images for a div, I want one of those background images to overlap the other. Tom Livingston wrote: https://css-tricks.com/stacking-order-of-multiple-backgrounds/ On Sunday, September 20, 2015, Tom Livingston > wrote:

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
Ah, I caught the mark ! I hope it works ! Tom Livingston wrote: https://css-tricks.com/stacking-order-of-multiple-backgrounds/ On Sunday, September 20, 2015, Tom Livingston > wrote: Z-index won't help unless you are putting each image in its

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
The order you have them in the CSS controls their stack order. On Sunday, September 20, 2015, Crest Christopher wrote: > Unfortunately it's not possible to change the z-index of a multiple > background image; anyone have any suggestions as to how, if at all, this >

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
In terms of background images order ? Tom Livingston wrote: The order you have them in the CSS controls their stack order. On Sunday, September 20, 2015, Crest Christopher > wrote: Unfortunately it's not possible to change

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
I can do multiple z-index and have them effect multiple background images ? Tom Livingston wrote: Yes On Sunday, September 20, 2015, Crest Christopher > wrote: In terms of background images order ? Tom Livingston wrote:

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
Z-index won't help unless you are putting each image in its own container. Z-index won't effect a background image itself. On Sunday, September 20, 2015, Crest Christopher wrote: > I can do multiple z-index and have them effect multiple background images ? > > Tom

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
https://css-tricks.com/stacking-order-of-multiple-backgrounds/ On Sunday, September 20, 2015, Tom Livingston wrote: > Z-index won't help unless you are putting each image in its own container. > Z-index won't effect a background image itself. > > On Sunday, September 20,

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
Did you read the info at the link I sent? On Sunday, September 20, 2015, Crest Christopher wrote: > I have multiple background images for a div, I want one of those > background images to overlap the other. > > Tom Livingston wrote: > >

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
The short-hand method didn't work. I'm going to revert everything back to it's original state and... Tom Livingston wrote: Shorthand should be: Background: url(image1.jpg) 50% 50% no-repeat, url(image2.jpg) 50% 50% no-repeat, Url(image3.jpg) 45% 65% no-repeat; On Sunday, September 20,

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
On Sunday, September 20, 2015, Crest Christopher wrote: > Since I changed the background-image order to what in essence should have > worked out. This also required me to change the background-position order, > and to my surprise it doesn't work. > > What I had

Re: [css-d] z-index of background images

2015-09-20 Thread Tom Livingston
Shorthand should be: Background: url(image1.jpg) 50% 50% no-repeat, url(image2.jpg) 50% 50% no-repeat, Url(image3.jpg) 45% 65% no-repeat; On Sunday, September 20, 2015, Crest Christopher wrote: > Before I posted a link, if it's required. This is what I have in

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
Since I changed the background-image order to what in essence should have worked out. This also required me to change the background-position order, and to my surprise it doesn't work. What I had previously was using the three background position properties; top, bottom, center. You can't

Re: [css-d] z-index of background images

2015-09-20 Thread Crest Christopher
Before I posted a link, if it's required. This is what I have in place as a pseudo thus far; background-image: ,, background-position:,, I've tried the short hand, that being; 50% 50%, 0% 45%,0% 65%. Image_a & Image_b don't even appear, it's as if they are gone ! Tom Livingston wrote: