Title: [Plugin: Dynamic &quot;To Top&quot; Plugin] Margin bootom
Last modified: August 20, 2016

---

# [Plugin: Dynamic "To Top" Plugin] Margin bootom

 *  Resolved [eric-05](https://wordpress.org/support/users/eric-05/)
 * (@eric-05)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/)
 * Hello Matt,
 * thank you for this nice plugin.
 * I want to increase the margin bottom of the plugin, I want the icon to be less
   down in the page (sorry for my english). What to change in wich css file?
 * Thank you
 * [http://wordpress.org/extend/plugins/dynamic-to-top/](http://wordpress.org/extend/plugins/dynamic-to-top/)

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

 *  Plugin Contributor [Matt](https://wordpress.org/support/users/sksmatt/)
 * (@sksmatt)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591872)
 * Hi Eric 05,
 * You could try hooking into the filter `mv_dynamic_to_top_css` this allows you
   to modify the minified css before it’s served.
 *     ```
       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');
       ```
   
 * Kind Regards!
 *  [kyssme](https://wordpress.org/support/users/kyssme/)
 * (@kyssme)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591874)
 * I see, but which css stylesheet should I put in? dynamic-to-top-admin.css or 
   dynamic-to-top-jquery-ui.css?
 *  [kjodle](https://wordpress.org/support/users/kjodle/)
 * (@kjodle)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591876)
 * It should go into your child theme’s functions file.
 *  [kyssme](https://wordpress.org/support/users/kyssme/)
 * (@kyssme)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591878)
 * I see, but that doesn’t work at all.
 *  Plugin Contributor [Matt](https://wordpress.org/support/users/sksmatt/)
 * (@sksmatt)
 * [14 years ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591907)
 * Hi Guys,
 * Little typo in my example, apologies. It would be:
 *     ```
       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');
       ```
   
 * As Kjodie said, It should go into your theme’s functions file.
 * Kind Regards!
 *  [letmotta](https://wordpress.org/support/users/letmotta/)
 * (@letmotta)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591928)
 * Hello, I want my bottom-right configured button with 32px margin-bottom.
    HOW
   can I edit this info?
 * Take a look here – [http://www.cutedrop.com.br/2012/06/principe-da-persia-e-a-rotoscopia/](http://www.cutedrop.com.br/2012/06/principe-da-persia-e-a-rotoscopia/)–
   to understand the reason I want this customized margin.
 * I`m not a developer, so if you can explain with details I`d be glad.
    Thanks 
   a lot

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

The topic ‘[Plugin: Dynamic "To Top" Plugin] Margin bootom’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/dynamic-to-top_282828.svg)
 * [Dynamic "To Top" Plugin](https://wordpress.org/plugins/dynamic-to-top/)
 * [Support Threads](https://wordpress.org/support/plugin/dynamic-to-top/)
 * [Active Topics](https://wordpress.org/support/plugin/dynamic-to-top/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dynamic-to-top/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dynamic-to-top/reviews/)

 * 6 replies
 * 5 participants
 * Last reply from: [letmotta](https://wordpress.org/support/users/letmotta/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-dynamic-to-top-plugin-margin-bootom/#post-2591928)
 * Status: resolved