• Resolved Seeyay

    (@progress-is-knowledge)


    Hi,

    The icons are showing behind a vimeo/youtube clip on most articles. This was not an issue before and happened with the latest update.

    Please see below.

    https://ibb.co/dJCsVk

    Thank you.

    Best regards,

    Carl

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Seeyay

    (@progress-is-knowledge)

    Correction of above, it happens for youtube clips, but not Vimeo. And it is worse on the mobile site.

    Is there perhaps a way to input some costume code to move them down a bit (like “<br>”).

    Thanks.

    // Carl

    Macho Themes

    (@machothemes)

    Hi @progress-is-knowledge,

    have forwarded this to our development team and will try to address it ASAP.

    Thanks,
    Cristian.

    Macho Themes

    (@machothemes)

    Hello @progress-is-knowledge,

    The social share bar output can be modified using the following filters:

    kiwi_article_bar_list_custom_class // adds an extra class to the container
    kiwi_before_article_bar // happens before the UL tag
    kiwi_before_first_article_bar_item // happens before the first LI item
    kiwi_after_last_article_bar_item // happens after the last LI item
    kiwi_after_article_bar // happens after the UL tag

    I would suggest using the kiwi_before_article_bar filter..

    e.g.

    add_filter( ‘kiwi_before_article_bar’, ‘prefix_add_br’ );
    function prefix_add_br( $html ) {
    return ‘<br/>’;
    }

    Let me know if this helps!

    Thanks,
    Cristian.

    Thread Starter Seeyay

    (@progress-is-knowledge)

    Hi,

    Should I add this to the child theme’s stylesheet? Or should I enter this into the plugin code?

    Thanks.

    Carl

    Macho Themes

    (@machothemes)

    Hello,

    You should add this in your functions.php file

    Thanks,
    Cristian

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Icon Location’ is closed to new replies.