To insert code use <code>...</code>.
Space below "Social Buttons" & Post comment button
  • I need to add 20px of space below the "addthis" "Social Icons" at the top of the page http://source-pro.org/paperclip-bookmarks-look-like-help/

    On the same page concerning the "Post Comment" button at the bottom of the page - I can't find where to style that button.
  • 1 Comment sorted by
  • Hi

    Open the addthis_social_widget.php go to line 1214

    You will see this code....


    if (isset ($styles[$options['above']]))
    {
    $above = apply_filters('addthis_above_content', $styles[$options['above']]['src']);
    }



    modify it to this. ( just tested this on your website and modfied the code already for you).


    if (isset ($styles[$options['above']]))
    {
    $above = apply_filters('addthis_above_content', $styles[$options['above']]['src']);
    $above = $above . '<div style="margin-top:20px;"></div>';
    }


    But keep track of the mod because when you update the plugin you will have to redo them again. now it has auto padding in the plugin.

    Best regards,
    BackuPs