Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 30th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. $browserAsString = $_SERVER['HTTP_USER_AGENT'];
  4.  
  5. if (strstr($browserAsString, " AppleWebKit/") && strstr($browserAsString, " Mobile/"))
  6. {
  7.     $browserIsMobileSafari = true;
  8. }
  9. if ($browserIsMobileSafari = true) { ?>
  10. <style>
  11. #access a {
  12. color: white;
  13. font-size: 1.3em;
  14. font-weight: bold;
  15. display: block;
  16. line-height: 47px;
  17. padding: 0 10px !important;
  18. text-decoration: none;
  19. }
  20. </style>
  21. <?php } ?>