• Thank you so much! I was donating a little time to a local rescue and was thrilled to find your plugin. Took no time to install! Clean, friendly, easy to use. Wonderful project.

    TIP FOR USERS: To customize it, I chose to use a little javasctipt. For example, I wanted the featured pet in the sidebar to say “MEET ME!” and I did it like this:

    
    jQuery('#featured_pet').children('p').children('a').addClass('nowrap button-sals');
    jQuery('#featured_pet').children('p').children('a').text('Meet Me!');
    

    I also added some bootstrap classes as needed like this:

    
    jQuery('.dog').addClass('col-md-4 col-sm-6');
    

    Just remember that it has to all be done once DOM is loaded.

    
    jQuery( document ).ready(function(){});
    
  • The topic ‘Amazing plugin, thank you!’ is closed to new replies.