The CSS above works if you use data-height, like this:
<a class="twitter-timeline" href="https://twitter.com/[username]" data-height="300">Tweets by [username]</a>
Target #twitter-widget-0 with this CSS
#twitter-widget-0 {
height: 400px !important;
}
This CSS will override the height set in data-height
This means you can change the height of the timeline with media queries
#twitter-widget-0 {
height: 350px !important;
}
@media (min-width: 768px) {
#twitter-widget-0 {
height: 600px !important;
}
Is this documented anywhere?