juliewiens
Forum Replies Created
-
Yes the scheduling future posts option is why I use this plugin. Adding that back would be amazing. Thank you!
The time zone thing didn’t fix it. All three time zones were already correct. I also rolled back my version to a previous version of the plugin and things are working correctly. I’m thinking it’s a bug in the current version.
Well I came up with a solution but it didn’t completely fix the problem. The problem was that something was offsetting the landscape thumbnails, they didn’t fit the wrapper.
Now I’m not very good with jquery, so my solution is probably not the best one. All I did was made sure the thumbnail would start aligned left inside the wrapper. So I just added
'left':0+'px',to the thumbnail section (I believe line 555) of the jquery file// Scale each filmstrip image if necessary and position it within the image wrapper $('img',j_frames).each(function(i){ $(this).css({ 'opacity':opts.frame_opacity, 'height':img_h[i%item_count]*frame_img_scale[i%item_count]+'px', 'width':img_w[i%item_count]*frame_img_scale[i%item_count]+'px', 'position':'relative', 'top':Math.min(0,(opts.frame_height-(frame_img_scale[i%item_count]*img_h[i%item_count]))/2)+'px', 'left':0+'px',So the thumbnails now fill the entire wrapper, but if you look closely at the thumbnails of the landscape oriented images you’ll see they’re still distorted. They fill the wrapper height but squish to fit into the width.
I’m still open to suggestions to better fix the problem…