Customizing your feed
Overriding the Curator CSS
As the widget HTML is added directly to the HTML of the webpage (not using an IFRAME) the CSS styles of the widget can be overridden in the same way you'd override CSS on the page. You can use CSS Specificity (see MDN Specificity) to override the styles predefined by the curator.css file.
These styles can be placed in the websites main css file or a <style>
tag in the actual HTML.
In the example below we use the CSS classes of the Date Element to adjust the font-size and color:
.crt-post .crt-post-footer .crt-post-date .crt-post-date-link { font-size: 20px; color: red; }