kyssme
Member
Posted 3 months ago #
I am actually using Wibiya social toolbar which is usually on the bottom of the website. I like the TO TOP arrow button on the bottom right, but I want to place it a big higher since Wibiya social toolbar tend to block the arrow button partially (about 15% of it). How can I edit the plug-in to do this?
http://wordpress.org/extend/plugins/dynamic-to-top/
Hi Kyssme,
You can hook on the dynamic-to-top css filter and modify/overwrite some properties, please take a look a this thread:
http://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom?replies=1#post-2660975
Kind Regards!
kyssme
Member
Posted 3 months ago #
I see, but which css stylesheet should I put in? dynamic-to-top-admin.css or dynamic-to-top-jquery-ui.css?
Hi kyssme,
It should go in your theme's functions.php file.
Kind Regards!
I placed the code:
function my_dynamic_to_top_filter( $css ){
$css .= '#dynamic-to-top{ bottom: 200px; }';
return $css;
}
add_filter('mv_dynamic_to_top_css','my_dynamic_to_top_filter');
in functions.php file. But the code showed visibly on the top of the website, which isn't supposed to be that way?