I know very little about Javascript and the like (essentially, I know enough to figure out which pieces to copy and paste). Thus, I've been attempting to modify the Twitter widget using the code I found here. I've modified it so it appears as I want, but there is a large space before and after the feed, which is unintentional. Please see my blog: Lost Little Lutheran.
Here's the css I used:
if ( ibody.find( '.timeline .stream .h-feed li.tweet' ).length ) {
ibody.find( '.footer' ).css( 'visibility', 'hidden' );
ibody.find( '.footer' ).css( 'min-height', 0 );
ibody.find( '.footer' ).css( 'height', 0 );
ibody.find( '.footer' ).css( 'margin', '0px 0px -10px 0px' );
ibody.find( '.p-nickname' ).css( 'font-size', 0 );
ibody.find( '.p-nickname' ).css( 'visibility', 'hidden' );
ibody.find( '.e-entry-content' ).css( 'margin', '0px 0px 0px 0px' );
ibody.find( '.p-name' ).css( 'font-family', 'Georgia' );
ibody.find( '.e-entry-content p' ).css( 'font-family', 'Georgia' );
ibody.find( '.dt-updated' ).css( 'visibility', 'hidden' );
ibody.find( '.dt-updated' ).css( 'font-size', 0 );
ibody.find( '.full-name' ).css( 'visibility', 'hidden' );
ibody.find( '.full-name' ).css( 'font-size', 0 );
ibody.find( '.avatar' ).css( 'margin', '25px 0px 0px 0px' );
}
Does anybody know how to tighten this up?
Thanks!