Advertisement
hunterthemes

PROFILE WIDGET SCRIPTS + META

May 2nd, 2018
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. PASTE THE FOLLOWING UNDER </head> or before <style>
  2.  
  3.  
  4. <meta name="color:PW title background" content="#aaaaaa" />
  5. <meta name="color:PW title" content="#ffffff" />
  6. <meta name="color:PW title romb background" content="#ffffff" />
  7. <meta name="color:PW icon" content="#dddddd" />
  8. <meta name="color:PW about background" content="#f6f6f6" />
  9. <meta name="color:PW about text" content="#aaaaaa" />
  10. <meta name="color:PW link background" content="#f6f6f6" />
  11. <meta name="color:PW link romb background" content="#aaaaaa" />
  12. <meta name="color:PW link" content="#aaaaaa" />
  13. <meta name="color:PW link hover" content="#dddddd" />
  14.  
  15. <meta name="font:Profile widget font" content="Helvetica" />
  16.  
  17. <meta name="if:Display Profile Widget" content="1" />
  18. <meta name="if:Display Link One" content="1" />
  19. <meta name="if:Display Link Two" content="1" />
  20. <meta name="if:Display Link Three" content="1" />
  21. <meta name="if:Display Link Four" content="1" />
  22. <meta name="if:Display Link Five" content="1" />
  23. <meta name="if:Display Link Six" content="1" />
  24.  
  25. <meta name="text:Profile widget top position" content="50px" />
  26. <meta name="text:Profile widget left position" content="50px" />
  27.  
  28. <meta name="text:About text" content="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo." />
  29.  
  30. <meta name="text:Updates text" content="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo." />
  31.  
  32. <meta name="text:Link One Title" content="Link" />
  33. <meta name="text:Link One Url" content="http://"/>
  34. <meta name="text:Link Two Title" content="Link"/>
  35. <meta name="text:Link Two Url" content="http://"/>
  36. <meta name="text:Link Three Title" content="Link" />
  37. <meta name="text:Link Three Url" content="http://" />
  38. <meta name="text:Link Four Title" content="Link" />
  39. <meta name="text:Link Four Url" content="http://" />
  40. <meta name="text:Link Five Title" content="Link" />
  41. <meta name="text:Link Five Url" content="http://" />
  42.  
  43. <!-- PROFILE WIDGET SCRIPTS -->
  44.  
  45. <!-- Fort awesome script -->
  46.  
  47. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  48.  
  49. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  50.  
  51. <script>
  52. $(document).ready(function(){
  53.  
  54. $(".pw_atitle").click(function(){
  55. $("#pw_about").slideToggle(400);
  56. $(".pw_aromb").toggleClass("pw_rotate");
  57. $(".pw_aromb i").toggleClass("pw_rotate2");
  58. });
  59.  
  60. $(".pw_ltitle").click(function(){
  61. $("#pw_links").slideToggle(400);
  62. $(".pw_lromb").toggleClass("pw_rotate");
  63. $(".pw_lromb i").toggleClass("pw_rotate2");
  64. });
  65.  
  66. $(".pw_utitle").click(function(){
  67. $("#pw_updates").slideToggle(400);
  68. $(".pw_uromb").toggleClass("pw_rotate");
  69. $(".pw_uromb i").toggleClass("pw_rotate2");
  70. });
  71.  
  72. $("#pw_search").click(function(){
  73. $(".pw_sromb").toggleClass("pw_rotate");
  74. $(".pw_sromb i").toggleClass("pw_rotate2");
  75. });
  76.  
  77. });
  78. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement