Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Praveen Rajan

    (@praveen-rajan)

    @msobrepera

    I’m able to play the videos mentioned in the link above(Win 7/IE8). What is it not displaying correctly? Please put up a screenshot.

    Thanks,
    Praveen Rajan

    Thread Starter msobrepera

    (@msobrepera)

    Hi Praveen,

    I’ve solved it by editing the css. Attachment 2 pictures where you see the difference between put and not put width

    Image 1
    Image 2

    Thanks and congratulations for your plugin!
    Meritxell Sobrepera

    Plugin Author Praveen Rajan

    (@praveen-rajan)

    @ msobrepera

    Good to know ??

    Spidr

    (@spidr)

    How did you access the css file? I cannot find it? Where is it, please.

    Here is another quick fix.

    Go to \wp-content\plugins\cool-video-gallery\cool-video-gallery.php

    Find line 731

    Change

    $output .=  '<a href="' . $video['filename'] . '" title="' . stripslashes($video['title']) . '"  rel="fancy_cvg_gallery_'.$gallery_id.'_'. $arguments['placeholder'].'" style="float:left;height:'.$thumb_height.'px !important;">' ;
    				$output .=  '<img src="' .$video['thumb_filename'] . '" style="width:' . $thumb_width . 'px;height:' . $thumb_height .'px;max-width:100% !important;" ' ;
    				$output .=  'alt="' . htmlspecialchars('Click to Watch Video') . '" /></a>';

    to

    $output .=  '<a href="' . $video['filename'] . '" title="' . stripslashes($video['title']) . '"  rel="fancy_cvg_gallery_'.$gallery_id.'_'. $arguments['placeholder'].'" style="float:left;height:'.$thumb_height.'px !important;">' ;
    				$output .=  '<img src="' .$video['thumb_filename'] . '" style="width:' . $thumb_width . 'px;height:' . $thumb_height .'px;max-width:100% !important;" ' ;
    				$output .=  'alt="' . htmlspecialchars('Click to Watch Video') . '" />';
    				$output .=  '<div style="width:' . $thumb_width . 'px;"></div>';
    				$output .=  '</a>';

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Cool Video Gallery] does not display correctly in IE8’ is closed to new replies.