Good Morning JLueze,
Hope all is well. Your time and patience are greatly appreciated.
1. Cropping Images: My theme is Comet and there are no other image plugins. All images are created in PowerPoint, given the same dimensions before being uploaded into WordPress, and saved as .png. I notice, after uploading the images, that some are cropped and others are not; however, the thumbnails are showing no cropping. Because the issue does not involve Meteor Slide, I am satisfied.
2. Slideshow with Thumbnails: The example slideshow with thumbnails code that you have provided is exactly what I require; however, where should it be pasted? And, should I paste all of the code.
It will be the blog’s home page and feature selected slideshows (i.e., monthly promotions). A slideshow has been created with the slug ‘home’ and selected images have been selected. However, when I paste the code into the page, it is showing the code.
$(‘#slideshow’).before(‘<ul id=”nav”>’).cycle({
fx: ‘turnDown’,
speed: ‘fast’,
timeout: 0,
pager: ‘#nav’,
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return ‘
- <img src=”‘ + slide.src + ‘” width=”50″ height=”50″ />
‘;
}
});
#slideshow { left: 20px }
#nav { width: 300px; margin: 15px }
#nav li { width: 50px; float: left; margin: 8px; list-style: none }
#nav a { width: 50px; padding: 3px; display: block; border: 1px solid #ccc; }
#nav a.activeSlide { background: #88f }
#nav a:focus { outline: none; }
#nav img { border: none; display: block }
3. Multiple Slideshows: If I use the code below to the Home page, is it correct to change code to (“home”, “”) and paste it into the Home page? If not, where should it be pasted?
<?php if(function_exists(‘meteor_slideshow’)) { meteor_slideshow(“home”, “”); } ?>
Thank you very much!