.postid-1762 #your-element {
display: none;
}
Monday, April 22, 2019
How to Hide Elements on Specific WordPress Pages
Find the post or page id. something like: .postid-1762 or .pageid-1762. Then add to your css :
Sunday, April 21, 2019
Hiding elements on Mobile with CSS
@media screen and (max-width: 320px){#wrapper{display:none;}}
@media screen and (max-width: 480px){#wrapper{display:none;}}
@media screen and (max-width: 650px){#wrapper{display:none;}}
@media screen and (max-width: 980px){#wrapper{display:none;}}
@media screen and (max-width: 980px){#wrapper{display:none;}}
replace #wrapper with any other DIV or Class you don’t want to be displayed.
Subscribe to:
Posts (Atom)
How to Hide Elements on Specific WordPress Pages
Find the post or page id. something like: .postid-1762 or .pageid-1762. Then add to your css : .postid-1762 #your-element { display :...
-
Add your journal to the following site: https://partnerdash.google.com/partnerdash/d/scholarinclusions#p:id=new Follow the instructions...
-
Find the post or page id. something like: .postid-1762 or .pageid-1762. Then add to your css : .postid-1762 #your-element { display :...
-
To display only Child Category in the post loop (mostly single.php), all you have to do is replace the following code: 1 <?php t...