Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author stefanoai

    (@stefanoai)

    Hi, i think the problem is not chrome on osx but padding on css…
    now you can fix updating the file youtube-widget-responsive.php at line 29
    after
    var maxwidth = jQuery(this).css('max-width').replace(/px/, '');

    add the following lines:

    var pl = parseInt(jQuery(this).parent().css('padding-left').replace(/px/,''));
    var pr = parseInt(jQuery(this).parent().css('padding-right').replace(/px/,''));
    width=width-pl-pr;

    Regards

    Thread Starter Evan Bartholomew

    (@evan-bartholomew)

    Worked great. Thank you for the prompt support.

    Plugin Author stefanoai

    (@stefanoai)

    You are welcome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Responsiveness not working correctly’ is closed to new replies.