Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dmlarsen30

    (@dmlarsen30)

    Anyone? I could really use some help here…

    Thread Starter dmlarsen30

    (@dmlarsen30)

    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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Any way to change image size?’ is closed to new replies.