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 :

.postid-1762 #your-element {
    display: none;
}


No comments:

Post a Comment

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 :...