diff --git a/wp-content/plugins/most-active-members/most-active-members.php b/wp-content/plugins/most-active-members/most-active-members.php index 76cc0ff..d01d49f 100644 --- a/wp-content/plugins/most-active-members/most-active-members.php +++ b/wp-content/plugins/most-active-members/most-active-members.php @@ -280,7 +280,7 @@ class Top_Members extends WP_Widget { $defaults = array( 'title' => __( 'Top Members', 'top_members'), 'number' => __(1, 'top_members'), - 'template' => __('
  • Thanks %firstname% %lastname% !!!
    %gravatar% %firstname% %lastname% has recommended us to %nrofposts% friends!!!
  • ', 'top_members'), + 'template' => __('

    Thanks %firstname% %lastname% !!!

    %gravatar%
    %firstname% %lastname% has recommended
    us to %nrofposts% friends!!!
    Invite your friends', 'top_members'), 'linkbase' => 'buddypress/members', 'author_link' => 'username', 'before' => __(' @@ -138,9 +141,9 @@ if (have_posts()) {

    - - Dedicate a song + Dedicate this song + Dedicate a song
    @@ -221,12 +224,14 @@ if (have_posts()) { jQuery('#dedicationSong').html(song); } ); - jQuery('#dedicationFooter_container').slideDown(); + jQuery('#dedicationFooter_container').slideDown( + 'fast', + function() {} + ); + jQuery('#dedicationTitle').html(new_title); + shrinkTitle(); + jQuery('#dedicationTitle').jTypeWriter(); - jQuery('#dedicationTitle').html(new_title); - shrinkTitle(); - jQuery('#dedicationTitle').jTypeWriter(); - jQuery('#dedicationComments_container').slideUp( 'fast', function() { jQuery('#dedicationComments_container').html(comments); } @@ -240,13 +245,14 @@ if (have_posts()) { var textH1 = document.getElementById("dedicationTitle"); var textDiv = document.getElementById("dedicationTitle_container"); - textH1.style.fontSize = 46+"px"; + textH1.style.fontSize = 42+"px"; while(textH1.offsetWidth > textDiv.offsetWidth) { size = parseInt(textH1.style.fontSize.replace("px","")); size -= 1; textH1.style.fontSize = size+"px"; } + textH1.style.fontSize -= 10+"px"; }