Advertisement
ScottBin

Font change

Sep 21st, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var pig1 = document.querySelector("link[href*='font']").href;
  2. pig1 += "|Raleway|Spirax|Fredoka One|Orbitron";
  3. document.querySelector("link[href*='font']").href = pig1;
  4. var pig2 = document.querySelectorAll("p");
  5. //pig2.forEach(function(a){a.style = "";});
  6. for(i=0;i<pig2.length;i++){pig2[i].style = "";pig2[i].style.cssText = "";}
  7. var pig3 = document.createElement("style");
  8. pig3.innerHTML = ".ForumPostContentText p,.ForumPostContentText div{font-family:Raleway,Orbitron,Fredoka One,Spirax;}";
  9. document.head.appendChild(pig3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement