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
Hi @progress-is-knowledge,
have forwarded this to our development team and will try to address it ASAP.
Thanks,
Cristian.
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
Hello,
You should add this in your functions.php file
Thanks,
Cristian