Aurangajeb

Custom CSS for WPUF form field and social share button

Dec 5th, 2020 (edited)
1,515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.45 KB | None | 0 0
  1. /**
  2.  * Custom CSS for WPUF login and registration page.
  3.  * Hide unexpected textarea field in login page
  4.  * Retouch padding/marking for WPUF forms elements and social logins
  5.  **/
  6.  
  7. /** For Registration page **/
  8.  
  9. textarea[name="recaptcha_challenge_field"] {
  10.     display: none;
  11. }
  12. .page-id-232 .entry-crumbs {
  13.     display: none;
  14. }
  15.  
  16. .page-id-232 .td-page-header {
  17.     display: none;
  18. }
  19.  
  20. .page-id-232 .td-pb-span12.td-main-content {
  21.     margin-top: 50px;
  22.     padding: 0;
  23. }
  24.  
  25. /** Reset WPUF element padding margin **/
  26. .page-id-232 .wpuf-el {
  27.     padding: 5px !important;
  28.     margin-bottom: 5px !important;
  29. }
  30.  
  31.  
  32. /** For Login page **/
  33.  
  34. .page-id-8929 textarea[name="recaptcha_challenge_field"] {
  35.     display: none;
  36. }
  37. .page-id-8929 .entry-crumbs {
  38.     display: none;
  39. }
  40.  
  41. .page-id-8929 .td-page-header {
  42.     display: none;
  43. }
  44.  
  45. .page-id-8929 .td-pb-span12.td-main-content {
  46.     margin-top: 20px;
  47.     padding: 0;
  48. }
  49.  
  50. /** Reset WPUF element padding margin **/
  51. .page-id-8929 .wpuf-el {
  52.     padding: 5px !important;
  53.     margin-bottom: 5px !important;
  54. }
  55. .page-id-8929 #loginform p {
  56.     margin-bottom: 5px !important;
  57. }
  58.  
  59. /**
  60.  * Social share padding/margin/size customization
  61. **/
  62.  
  63. .jssocials-shares a {
  64.     padding: 5px 10px 5px 10px !important;
  65.     margin: 5px 10px 5px 10px !important;
  66. }
  67. li.jssocials-share {
  68.     height: 50px;
  69. }
  70. img.jssocials-share-logo {
  71.     margin-bottom: 0px;
  72.     width: 30px !important;
  73.     height: 30px !important;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment