I added some CSS to increase the size of the font on the meta slide caption. This works but I need to increase the height of the caption wrapper to accommodate the larger text. Inspecting the CSS I can see where this is controlled, but I can’t seem to add the correct Custom CSS to make it work.
www.uninspiredramblings.com
The text size increases, but the height of the caption wrapper (default 1.4em) doesn’t. Yet if I change it in Chrome Developer Tools whilst inspecting the page, it does adjust the height of the caption wrapper…
The CSS I’ve added is:
.metaslider .caption-wrap {
line-height: 2.0em; /* adjust as necessary */
}
.metaslider .caption,
.metaslider .cs-title,
.metaslider .nivo-caption {
font-size: 125%; /* adjust as necessary */
}
Thanks, Chris