Solved this problem myself. If anyone has a similar problem, here’s how I solved it:
Edit the kebo twitter feed plugin file: kebo-twitter-feed/css/plugin.css
[Note: on my installation, the css was not formatted. I used “https://www.cleancss.com/css-beautify/” to fix the formatting]
Find the following entry:
.kebo-tweets .ktweet .kmedia img {
display: inline-block;
vertical-align: middle;
width: auto;
height: auto;
margin: 0 0 5px 0;
padding: 0
}
Add the following line after “width: auto”:
max-width: 300px;
So, now it looks like:
.kebo-tweets .ktweet .kmedia img {
display: inline-block;
vertical-align: middle;
width: auto;
height: auto;
max-width: 300px;
margin: 0 0 5px 0;
padding: 0
}
Change 300px to whatever works for your website.
Cheers!
-Dave