Created
June 23, 2019 09:43
-
-
Save alexanmtz/cae3d9fbd4b790c15f1ffff04dcd8ae2 to your computer and use it in GitHub Desktop.
A example of a media query used for print
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media print { | |
#header, #location, #sidebar, #footer, #respond, #wpml_credit_footer { | |
display: none; | |
} | |
#content { | |
width: 95%; | |
} | |
.entry { | |
padding: 0; | |
margin: 0; | |
border: none; | |
box-shadow: none; | |
-moz-box-shadow: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment