How do I make all images align to top, not the middle? Also how do I adjust the position of the caption? For example to align it to the top left corner.
The images are center aligned by CSS with the !important Flag asigned.
you could either:
$(".fotorama").on("fotorama:show",function(){......})
the caption can be easily modified just by css with the class fotorama__caption
- for example:
.fotorama__caption{
top:1%;
left: 2%;
font-size: 200%;
}