Forums

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

Home Forums CSS Problem with css Reply To: Problem with css

#236386
TheDoc
Member

Instead of having a width/height of 100% on figcaption you should just set the top/right/bottom/left values to something other than 0.

This worked for me:

#main-banners > div figcaption {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    /* width: 100%; REMOVE */
    /* height: 100%; REMOVE */
    padding: 10%;
    color: #FFF;
    background-color: rgba(40, 40, 40, 0.8);
}