josiahrooney
Forum Replies Created
-
Hi Cais,
I’m actually working on the same client Spenser was before (but is no longer). I have tested the plugin with all others disabled. It works. Turns out it’s iThemes Security that is causing the problem. I am attempting to find a way of writing an exception for the plugin.
If you have any advice or guidance on this it would be most appreciated.
Forum: Plugins
In reply to: [Contact Form 7] Conflict with SidrThank you, I figured it out.
Hi, I was able to fix the issue using jQuery. At first any attempts I made to fix it wouldn’t work since if I used hover(), your function would override mine. The solution was causing my function to delay 100ms on hover.
$('.page-id-37 img').hover(function(){ var left = $(this).offset().left + 10; setTimeout(function() { $('body > a').css('left',left); }, 100); });
This solution works for me but if you try using MasterSlider with it, you may face the same issue I had.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Pin It buttonI am having the same issue as MissMarlboro. I hope there is a solution for us. I would like my users to be able to pin images in a slideshow and it doesn’t currently seem to be possible.
Forum: Plugins
In reply to: [NextGEN Gallery Voting] How to center like/dislike thumbs under pictureThis is the CSS I used to do it:
.nggv-link-like, .nggv-link-dislike { float: left; } .nggv-vote-form { margin: auto; width: 95px; }
You may need to make further adjustments. This is what worked for me.
Forum: Plugins
In reply to: [NextGEN Gallery Voting] SOLUTION: How to show votingThis was very helpful. Thank you so much! Your code was removed from a moderator or something but I figured out where to put it. I put it right after the closing tag for the image thumbnail.