RichTatum

Add # to Google, Bing, DuckDuckGo SERPs

Jan 25th, 2019
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. body { counter-reset: serpcntr 0 !important; }
  2.  
  3. /* DESKTOP SERPS, Google, Bing, DuckDuckGo */
  4. @media screen and (min-width: 501px){
  5. .LC20lb::before, .e2BEnf::before, .kp-header::before, .b_algo h2::before, .b_ans::before, .result::before {
  6. counter-increment: serpcntr 1 !important; /* Increment serpcntr by 1 */
  7. content: counter(serpcntr) !important;    /* Display serpcntr */
  8. float: left !important;margin-left: -40px !important;padding: 0 3px !important; background-color: black !important; color: white !important; font-family: Arial Black !important; font-size: 14px !important; }
  9. }
  10.  
  11. /* MOBILE SERPS, Google, Bing, DuckDuckGo */
  12. @media screen and (max-width: 500px){
  13. #rso>div>div::before, #b_results.b_ans::before, .b_algo::before, #b_results > li.b_ans::before, .result::before {counter-increment: serpcntr 1 !important;
  14. content: counter(serpcntr) !important;
  15. float:left !important;margin-left:0 !important;margin-top:-20px !important;padding: 0 3px !important; background-color: black !important; color: white !important; font-family: Arial Black, Open Sans ExtraBold,Helvetica Black !important; font-size: 12px !important;}
  16. /* MAKE SPACE FOR NUMBER */
  17. #rso > div > div > div {margin-top: 25px !important; }
  18. }
Add Comment
Please, Sign In to add comment