@media print {
    footer,
    .view-display-id-related_articles_section,
    .breaking-news-region,
    .col-sm-4,
    .field-name-field-tags {
        display: none !important;
    }
    @page {
        size: auto;
        /* auto is the initial value */
        margin: 0mm;
        /* this affects the margin in the printer settings */
    }
    html {
        background-color: #FFFFFF;
        margin: 0px;
        /* this affects the margin on the html before sending to printer */
    }
    body {
        border: solid 1px gray;
        margin: 10mm 15mm 10mm 15mm;
        /* margin you want for the content */
    }
    a[href]:after {
        content: none !important;
    }
}