and I also changed the size to 750×700 in meteor-slides/meteor-slides-plugin.php
// Adds default values for options on settings page
register_activation_hook( __FILE__, 'meteorslides_default_options' );
function meteorslides_default_options() {
$tmp = get_option( 'meteorslides_options' );
if ( ( $tmp['slideshow_quantity']=='' )||( !is_array( $tmp ) ) ) {
$arr = array(
'slideshow_quantity' => '5',
'slide_height' => '750',
'slide_width' => '700',
'transition_style' => 'fade',
'transition_speed' => '2',
'slide_duration' => '5',
'slideshow_navigation' => 'navnone'
);
update_option( 'meteorslides_options', $arr );
}
}
[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
but it still doesn’t work