Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • dmlarsen30

    (@dmlarsen30)

    I have had to deactivate Yoast 3.0.4 on my site. The impact seems to be primarily on the backend. A feature in the new update is using too many resources perhaps? I suppose I will need to restore the previous version as well. Symptoms include admin commands not working, not being able to save posts as drafts or publish posts.

    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

    Thread Starter dmlarsen30

    (@dmlarsen30)

    Anyone? I could really use some help here…

Viewing 3 replies - 1 through 3 (of 3 total)