Skip to content

Hackaday print article by frederic98

Screenshot of Hackaday print article

Details

Authorfrederic98

LicenseNo License

Categoryhackaday.com

Created

Updated

Size662 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

When printing a page from hackaday.com, only shows the actual article.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Hackaday print article
@version      20230112.11.18
@namespace    userstyles.world/user/frederic98
@description  When printing a page from hackaday.com, only shows the actual article.
@author       frederic98
@license      No License
==/UserStyle== */

@-moz-document domain("hackaday.com") {
@media print {
    #main > *:not(article) {
        display: none;
    }
    footer {
        display: none !important;
    }
    .share-post {
        display: none !important;
    }
    .comments-counts {
        display: none !important;
    }
    .site-branding {
        display: none !important;
    }
}
}

Reviews

No reviews yet.