Change "FEATURED" header to "FREE TO READ"

Hallo
In the journal theme, I would like to change the “FEATURED” header in the sidebar to “FREE TO READ”

I would be very gratreful if someone could provide a CSS snippet for this.

Many thanks

CSS no, javascript, yes!
In code injection FOOTER (not header)

<script>
var xpath = "//h3[text()='Featured']";
var matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
matchingElement.innerHTML = 'Free to Read';
</script>
1 Like

Works perfect. Many thanks Cathy

1 Like