Hello! My problem is this: http://pia-no.se/godis.php Here I embeded a youtube video and that video goes infront of the footer image. How do I place the youtube vid behind the footer? Any ideas? Thanks
I'm guessing your footer image is set as a background image. That means it will always stay there and so cannot go over any content, such as your youtube video. You could try using z-index but it requires your image (I do say an image as in <img>, not a background) to be positioned absolutely, which may cause other lay-out problems. You'll have to give it a try anyway.. Some z-index help maybe: http://www.w3schools.com/Css/pr_pos_z-index.asp
Thanks for your advice! #footer { width: 850px; height: 161px; position: fixed; bottom: 10px; z-index: 7; background-image: url(../pic/footer.png); clear: both; } The text and images goes under the footer image but not the youtube vid. I have heard that it behaveslike that because it is flash. Is that so? If so how do I manage it? Thanks a bunch! /Tim