When printing a page from hackaday.com, only shows the actual article.
Hackaday print article by frederic98
Details
Authorfrederic98
LicenseNo License
Categoryhackaday.com
Created
Updated
Size662 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
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;
}
}
}