Viewing 1 replies (of 1 total)
  • 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.