Hi, ok heres my situation. I have a div with nothing in it , just a background image. I also have some text behind this div (the reason its behind it is because i moved the div with relative positioning) I need the text behind the div to be on top so i can select the text. When i set the z-index on the div to -1 the whole div disappears, so that didn't work for me. any thoughts on how i can do this? Thanks a lot.
Put the text inside a div or a span or a p or whatever, give it a class and then set the z-index of that class to 99 or something. Without looking at it, I can't really help much more
i think you already solved your problem if not then you can do this in another way <div style='position:fixed;top:0;float:center;'>Text Goes Here</div> Code (markup):