I've used the twitter widget before to embed a twitter timeline. You are given the option to set the height of the widget, and the width has always just expanded to the width of the parent div. However in the current case it is not expanding. Can anyone use a browser web inspector (firebug, etc.) to detect why this particular iframe is getting it's width set to 220px instead of expanding to it's parent div width?
http://m.qwiet.com/ (click "Tweets") once the page has loaded.
Here's the HTML I'm using to embed the timeline:
<a class="twitter-timeline" href="https://twitter.com/user" data-widget-id="248169276782018560">Tweets by @user</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
Notice there is no mention of a width parameter. This has been killing me for days now.