When viewing this page in a narrow browser window, an issue arises with how the photo captions are displayed at the bottom of the page.
It's evident that the caption extends past the right edge of the photo. My preference would be for the photo and caption to have the same width, but narrowing the caption to match the photo's width could also work.
The code for displaying a single photo and its caption is as follows:
<div class="four columns">
<div class="ft-work">
<img src="images/slider/mum-daughter.jpg">
<div class="ft-work-title text-center">
<h5 class="alt-h">Caption??</h5>
</div>
</div>
</div>
I noticed that by removing this CSS rule:
#featured-work-slider img {
width: auto !important;
}
the photo aligns correctly with the caption, but unfortunately, the image becomes distorted and stretched.