From the list: Child Theme ✔ Ministry Groups Kyle S. added this on Nov 12, 2020 Completed Nov 13, 2020 by Kyle S. Assigned to Kyle S. Notes Match Homepage Posts (News) Comments & Events Kyle Sullivan, Web Development Here's what I ended up using for this (it's in general.js).// ministry group styling $('.tax-ministry-group .taxonomy-single').on('mouseenter', '.ministry-thumb', function(){ $(this).parent().next().find('.ministry-name-link').removeClass('has-primary-color').addClass('has-secondary-color'); }); $('.tax-ministry-group .taxonomy-single, .tax-ministry-group .ministry-thumb').on('mouseleave', ()=>{ $('.tax-ministry-group .ministry-name-link').removeClass('has-secondary-color').addClass('has-primary-color'); }); Nov 13, 2020 at 5:25 PM No one was notified Kyle Sullivan completed this to-do. Nov 13, 2020 at 5:26 PM
Kyle Sullivan, Web Development Here's what I ended up using for this (it's in general.js).// ministry group styling $('.tax-ministry-group .taxonomy-single').on('mouseenter', '.ministry-thumb', function(){ $(this).parent().next().find('.ministry-name-link').removeClass('has-primary-color').addClass('has-secondary-color'); }); $('.tax-ministry-group .taxonomy-single, .tax-ministry-group .ministry-thumb').on('mouseleave', ()=>{ $('.tax-ministry-group .ministry-name-link').removeClass('has-secondary-color').addClass('has-primary-color'); }); Nov 13, 2020 at 5:25 PM No one was notified
// ministry group styling $('.tax-ministry-group .taxonomy-single').on('mouseenter', '.ministry-thumb', function(){ $(this).parent().next().find('.ministry-name-link').removeClass('has-primary-color').addClass('has-secondary-color'); }); $('.tax-ministry-group .taxonomy-single, .tax-ministry-group .ministry-thumb').on('mouseleave', ()=>{ $('.tax-ministry-group .ministry-name-link').removeClass('has-secondary-color').addClass('has-primary-color'); });