The width of that twitter widget should be adjustable via plugin’s setting page
http://jetpack.me/support/extra-sidebar-widgets/twitter-timeline-widget/
Use 155px for the width which is the width of that area.
Hi @paulwpxp, Thanks for the note. I’ve tried your suggestion and it doesn’t make any difference. I can change the widget title, and number of tweets that are visible (so the site is responding), but changing the width or height of the widget makes no difference.
Any other ideas?
Use this in Jetpack’s Custom CSS module, activate it if not already yet.
.widget.widget_twitter_timeline iframe {
min-width: 155px !important;
width: 155px !important;
}
That worked. Thank you very much.