Im trying to align the two arrows here http://media.gaigo.org/work2.html#item-1 to align vertically to the centre of the image.
my html is:
<figure class="item">
<a href="#item-18"><img class="arrow left" src="static/img/leftarrow.png"></a>
<img src="static/img/WorkPicture.png">
<a href="#item-2"><img class="arrow right" src="static/img/rightarrow.png"></a>
<h2>Time Traveller #1 of 3</h2>
<p class="artDetails artMedium">watercolour</p>
<p class="artDetails artSize">20 x 30 inches</p>
</figure>
my css is:
.content .carousel .item .arrow {
display: inline-block;
vertical-align:middle;
}