Archived topic
CSS Help
3 replies · Started by David on January 7, 2019
Hello
I'm having a CSS problem that is driving me mad, and I was hoping someone could help...
On this page I have a 2 flex sliders, and on top I am try to say Before and After in a blue box, that needs to sit on top of the flex slider, but I can't work out how to move it above!
http://185.20.51.60/~beautifulpropert/casestudies/test-5/
Tried z-index etc, but no luck. Any ideas??
Thanks
Dave
Hi there,
the elements need to be relatively positioned so something like this:
.imgcaption-casestudy {
position: relative;
z-index: 3;
}
Brilliant, thank you so much :)
You're welcome