Advertisement
Codificando

Codificando - Icone na Barra Flutuante

Oct 18th, 2015
3,765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <script type="text/javascript">
  2.     var IMAGEM_BARRA_URL = "COLOQUE AQUI A URL DA IMAGEM";
  3.     $(document).ready(function() {
  4.         if($('#barraTopo h4 a').length && $('.logo a img').length) {
  5.            $('#barraTopo h4 a').html('<img src="' + IMAGEM_BARRA_URL + '" alt="' + $('#barraTopo h4 a').text() + '" />');
  6.         }
  7.     });
  8. </script>
  9. <style>
  10.     #barraTopo h4 { margin-top: -3px; }
  11.     #barraTopo h4 img { width: auto; height: auto; max-height: 35px; }
  12. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement