Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /*hide the original password protected message*/
  2. .post-password-form p:nth-of-type(1) {
  3. visibility: hidden;
  4. position: relative;
  5. }
  6.  
  7. /*new password protected message*/
  8. .post-password-form p:nth-of-type(1):after {
  9. content: 'NEW PASSWORD PROTECTED MESSAGE GOES HERE';
  10. visibility: visible;
  11. position: absolute;
  12. left: 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement