Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author micropat

    (@micropat)

    Yep, answered in the plugin’s FAQ and in this topic.

    How can I position a vertical floating share buttons bar relative to content?

    In settings, disable the default placement of the Vertical Buttons. In your theme’s file(s), find the parent element that you want to position the vertical bar to (the parent element should have a specified width), then add the following PHP sample code as a child of that parent element:

    <?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_FLOATING' ) ) {
        ADDTOANY_SHARE_SAVE_FLOATING( array(
            'kit_style' => 'margin-left:-100px; top:150px;',
            'vertical_type' => true,
        ) );
    } ?>
    Thread Starter tc0411

    (@tc0411)

    Hello micropat, thank you for your reply. I’m a newbie to this, does this issue involve wth FTP or root directory of the backend of the blog? Or I can simply handle it thru the wordpress dashboard?

    But doesn’t fixed positioning take the element out of the flow of the document similar to absolute positioning except that you can’t put it back in with a relatively positioned parent?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘floating options’ is closed to new replies.