/* 
    Document   : print
    Created on : 27/09/2011, 5:09:40 PM
    Author     : Logan
    Description:
        Disable printing of banners and general unnecessary page parts

*/

#left-panel, #banner, #footer  { display:none; }

@media print {
    header, header *, #comment-form-hide-btn, #right-panel {
        display: none !important;
    }

    /* Member/admin toolbar (Yvonne Ward / MEMBERS / Logout etc.) */
    ul.nav.nav-tabs { display: none !important; }

    /* Skip-to-content link */
    #skiptocontent { display: none !important; }

    /* This class is already in your HTML but was never defined in CSS */
    .print-full-width {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    @page {
        size: A4;
        margin: 0;
    }

    /* Reproduces the effect of manually setting print scale to 70% */
    html { font-size: 70%; }

@media print {
    #content img {
        max-width: 300px !important;
        width: 40% !important;
        height: auto !important;
    }
}