Home › Forums › CSS › Matching caption width to photo width › Reply To: Matching caption width to photo width
August 28, 2013 at 2:41 pm
#148450
Participant
Hey Josiahmann,
It seems that the only time the caption extends outside of the image is when the max-width of 1000px has been reached. So why not add a max-width of 1000 for the soliloquy-caption.
.soliloquy-container .soliloquy-caption {
bottom: 0px;
left: 0;
margin: auto;
padding: 0;
position: absolute;
width: 100%;
zoom: 1
**max-width: 1000px;**
}
Hope this works!