Hi c.devlin,
It is great to hear you like our plugin. You can change the font-size and color for the Title of the Twitter Feed Widget on that site by using this CSS:
.kebo_twitter_feed_widget .widget-title {
font-size: 20px;
color: #000000;
}
Just replace the size (20px) and color (#000000) with your desired options.
When you say icon, I presume you mean similar to how you have small images before the other titles in the page content? Using the following CSS instead of the above should achieve a similar effect:
.kebo_twitter_feed_widget .widget-title {
font-size: 20px;
color: #000000;
background: url('https://www.agreenhouse.net.au/wp-content/uploads/2013/09/icon_go.png') top left no-repeat;
padding-left: 80px;
}
You would just need to alter the background url to be an image of the icon you want. The padding-left is the ensure that the text does not appear over the top of the image.
Let me know if any of this doesn’t make sense, or you have more problems customizing it.