nlozovan

Untitled

May 4th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. in Custom CSS:
  2.  
  3. body .wrapper header #nav ul > li:first-child {
  4. backgound-color: green;
  5. background: url('http://....link-to-file');
  6. }
  7. body .wrapper header #nav ul > li:first-child a {
  8. opacity:0;
  9. }
  10.  
  11. in Custom JS:
  12.  
  13. jQuery(document).ready(function(){
  14. jQuery('body .wrapper header #nav ul > li:first-child').click(function(e){
  15. window.location.href = "http://cosmothemes.com";
  16. event.preventDefault(e);
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment