> > <div> > <img src="photo.jpg" /> > </div> > > and I'm doing a simple css thing to control theopacity: > > $("div").css({"opacity": 0.11});
Hi Bob - sorry for my english ;) As img is a child of div it takes the opacity from it's parent, so there's nothing you can do. When you set opacity: 1 for img it just mean that it has the same opacity as its parent (11%). The only thing you can do IMHO is to place the img outside the div and position it into right place. I hope I helped ;) Tom