I've used the line-height property in the parent and the vertical-align in the child:
<div style="height:500px; line-height:500px">
<img src="someimage.jpg" style="vertical-align:middle" />
</div>
It Works inside the body tag but when I try to put that content inside a colorbox the image aligns to the top, Is there some restriction of this rule inside absolute positioned elements, floated elements or something???
If anyone knows a better way to center an image vertically (not with top:50%) I'd appreciate it
Thanks