Advertisement
nrzmalik

Hide the Storyline Player Lightbox Close Button

May 29th, 2024
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.26 KB | Source Code | 0 0
  1. function addCssToHead(cssRules) {
  2.     var styleElement = document.createElement('style');
  3.     styleElement.textContent = cssRules;
  4.     document.head.appendChild(styleElement);
  5. }
  6. var css = `#light-box-close { display: none !important;} `;
  7. addCssToHead(css);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement