dmlarsen30
Forum Replies Created
-
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.
Forum: Plugins
In reply to: [Kebo Twitter Feed] Any way to change image size?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 “http://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!
-DaveForum: Plugins
In reply to: [Kebo Twitter Feed] Any way to change image size?Anyone? I could really use some help here…