﻿
/* 
    Print css 
    Only for news article page
    In case if it has the structure: article, same category news below it + sidemenu
    
    */


/*  Don't show anything...*/
header, footer, .container {
    visibility: hidden;
}

/*  ...except the logo and the article */ 
.site-logo, article {
    visibility: visible !important;
    margin-top: -50px !important;
}

/* But "delete" some other stuff on the page completely, so it wouldn't print out extra white pages */
.big-thumb-list,
.span4 .background1,
footer,
.add-comment {
    display:none;
}

