• Resolved tuponlol

    (@tuponlol)


    I am attempting to make my retweet and facebook share buttons appear on the same line, the code I have in my Index.php file:

    <div class="postmetadata">
    <p><?php if (function_exists('topsy_retweet_small')) echo topsy_retweet_small(); ?><?php if(function_exists("SFBSB_direct")) {echo SFBSB_direct();}?></p>

    Unfortunately, this code makes the buttons appear as one on top of the other, as opposed to next to each other. My blog is https://www.blueseatblogs.com, and the buttons appear at the end of each post. How can I adjust the code to make them appear next to each other? Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to check on what CSS is being applied and either amend it or add a new class for these icons.

    this might work: add it at the end of style.css of your theme:
    .topsy_widget_shortcode {float:left; margin-right:10px; }
    only tested in firefox/web developer add-on

    Thread Starter tuponlol

    (@tuponlol)

    That worked alchymyth. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Making Buttons Appear on Same Line’ is closed to new replies.