Title: map &amp; direction padding
Last modified: August 21, 2016

---

# map & direction padding

 *  Resolved [devdroidsj](https://wordpress.org/support/users/devdroidsj/)
 * (@devdroidsj)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/map-direction-padding/)
 * there is too much padding in between map and directions, want to change to 10px.
   also would like to print just the map not the whole page.
    THANKS
 * [http://wordpress.org/plugins/get-directions/](http://wordpress.org/plugins/get-directions/)

Viewing 1 replies (of 1 total)

 *  [llocally](https://wordpress.org/support/users/llocally/)
 * (@llocally)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/map-direction-padding/#post-4448276)
 * Hi,
 * to make styling changes, you can use adjust the css in your theme’s style.css,
   or use any other of teh methods of injecting css into your WordPress theme.
 * To change the padding to 50px for instance
 *     ```
       div.gdroute {
       padding-top: 50px;
       }
       ```
   
 * The print function uses the browser default print features and hiding parts of
   your theme can be also done with print specific css e..g
 *     ```
       @media print{
       #branding, #secondary, #footer { display:none; }
       }
       ```
   
 * but also you can be specific with wordpress css for instance just applying to
   a page id e.g.
 *     ```
       @media print{
       body.page-id-37 #branding, body.page-id-37 #secondary, body.page-id-37  #footer { display:none; }
       }
       ```
   
 * As css styling is specific to each wordpress theme, the examples I give are just
   that, examples, and each theme will need to use its own styling.
 * I hope that helps.

Viewing 1 replies (of 1 total)

The topic ‘map & direction padding’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/get-directions_dbddd4.svg)
 * [Get Directions Map](https://wordpress.org/plugins/get-directions/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/get-directions/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/get-directions/)
 * [Active Topics](https://wordpress.org/support/plugin/get-directions/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/get-directions/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/get-directions/reviews/)

## Tags

 * [padding](https://wordpress.org/support/topic-tag/padding/)
 * [print](https://wordpress.org/support/topic-tag/print/)

 * 1 reply
 * 2 participants
 * Last reply from: [llocally](https://wordpress.org/support/users/llocally/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/map-direction-padding/#post-4448276)
 * Status: resolved