Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #273875

    Hi!
    I have added code at the end of the functions.php file to get Sharebox on the pages. But I would like to move it and I wonder if it’s possible to view and use the shortcode and put it inside a 1/2 layoutmodule at some other place on the page? As it is now it very wide and I don’t want to use all social icons.

    I have tested to paste the code below to functions.php to view the shortcode in a debug mode, but I can’t find any shortcode at all? Where should it be?

    //set builder mode to debug
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug()
    {
    return “debug”;
    }

    #274038

    Hey!

    The Sharebox is not a shortcode (at the moment), if you want to reduce its container width try adding this to the Quick CSS:

    div.av-share-box {
        width: 50%;
    }

    Cheers!
    Josue

    #394156

    Hi!

    Is there a way to center this share box horizontal on pages?

    #394204

    Hi!

    Yes, use this code:

    div.av-share-box {
        width: 50%;
        margin: 0 auto;
        float: none;
    }

    Regards,
    Josue

    #394217

    Perfect! And if I want to have the header to centered, is “text-align: centered” the best option?

    #394269

    Hey!

    This will do it:

    .av-share-link-description {
        text-align: center;
    }

    Cheers!
    Josue

    #394278

    Thanks for the help!

    #394330

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Possible to move Sharebox?’ is closed to new replies.