Dear all,
I already know to style ‘All Links’, ‘All H1 Headings’, ‘All Paragraphs’, etcetera, but how can I style ‘All figure captions’? I cannot find the element in the elements panel.
Best,
Joep
Dear all,
I already know to style ‘All Links’, ‘All H1 Headings’, ‘All Paragraphs’, etcetera, but how can I style ‘All figure captions’? I cannot find the element in the elements panel.
Best,
Joep
Hi @joepfreedomlab <figcaption>
is HTML element that can be styled with CSS as any other elements when WF doesn’t offer UI for it. Just use custom CSS and if you do not know how to apply custom code you can visit Webflow university.
figcaption {
background-color: black;
color: white;
font-style: italic;
padding: 2px;
text-align: center;
}
EDIT: here is another solution you can find on forum while using input search field.