wpgenie

tickets sold label

Mar 15th, 2021 (edited)
1,223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. /* CSS to add tickets sold label under tickets sold progress bar */
  2. progress {
  3.   text-align: center;
  4. }
  5. progress:after {
  6.   content: attr(value)' Tickets Sold';
  7. }
  8.  
  9. /* Position text in progress bar screenshot http://storage.wpgenie.org/scr/img412616714.jpg */
  10.  
  11. /*
  12. progress:after {
  13.     position: relative;
  14.     bottom: 20px;
  15. }
  16. */
  17.  
  18. /* Removes max and zero starting points for progress bar */
  19.  
  20. /*
  21. .wcl-progress-meter .max, .wcl-progress-meter .zero {
  22.     display: none;
  23. }
  24. */
Add Comment
Please, Sign In to add comment