Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Matching caption width to photo width Reply To: Matching caption width to photo width

#148450
Jay Honnold
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!