Here is one idea, I didn't like the 'Add to Any' plugin icons at the top of my posts, I wanted them part of the post's footer
1) I took the 'Add to Any' plugin code:
HTML Code:
<?php echo '<ul class="addtoany_list">'; if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) ADDTOANY_SHARE_SAVE_ICONS( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") ); if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') ) ADDTOANY_SHARE_SAVE_BUTTON( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") ); echo '</ul>'; ?>
2) I added a '<br> at the beginning.
3) I added it to the end of the FOOTER of the Posts (ATO->Edit POST/PAGE INFO ITEMS->FOOTER: Homepage - also did it for the 'FOOTER: Multi Post Pages' and 'FOOTER: Single Post Pages') so the FOOTERS look like this
HTML Code:
%date('F jS, Y')% | %tags-linked('Tags: ', ', ', ' | ')% Category: %categories-linked(', ')% | %comments('Leave a comment', 'One comment', '% comments', 'Comments are closed')% %edit(' | ', 'Edit this post', '')%
<br><?php echo '<ul class="addtoany_list">'; if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) ADDTOANY_SHARE_SAVE_ICONS( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") ); if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') ) ADDTOANY_SHARE_SAVE_BUTTON( array("html_wrap_open" => "<li>", "html_wrap_close" => "</li>") ); echo '</ul>'; ?>
and now I have the icons as part of the post footer.
You can see how it looks at
Call of the Muse