Sticky button in feature list

The button is missing on the home page and the link text is picking up the description and the link at once???

Hi,

I checked and can see you have added some js code that alters how the feature list link works.

Not sure what you are trying to achieve with that code. If you would like the icons to be clickable, you can try this js code instead.

jQuery ( function( $ ) {

  $('.x-feature-box-text a:last-child').each( function() {
    $( this ).parent().parent().parent().find('.x-feature-box-graphic-inner i').wrap( '<a href="' + $( this ).attr('href') + '"></a>' );
    $( this ).remove();
  } );

} );

Hope that helps

Brilliant - That worked!! Thank You:grinning:

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.