The Facebook widget does allow you to change the width in the widget settings, but there is not a setting to change the height. If you need to change the height, follow the steps below. This information below was submitted by user lluisarbos
1. Go to editor
2. Find facebook-like-widget.php
3. Change 「height」 value as you want:
Copy to Clipboardif ( $show_faces == 'true' ) {
$height = '260';
}
if ( $show_stream == 'true' ) {
$height = '600';
}
if ( $show_header == 'true' ) {
$height = '200';
}x 1if ( $show_faces == 'true' ) {2 $height = '260';3}45if ( $show_stream == 'true' ) {6 $height = '600';7}89if ( $show_header == 'true' ) {10 $height = '200';11}Please note this is a customization that is outside of what we can provide for theme support. If you perform the customization, you will need to maintain the changes for future updates and also be able to troubleshoot any issues that arise. Thank you.