Advertisement
d1One

Untitled

Nov 12th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <style type="text/css">
  2. .header{
  3. display:none;
  4. }
  5.  
  6. .col-displayname,.col-avatar{
  7. display:block;
  8. }
  9. .col-displayname{
  10. display:block;
  11. text-align:center !important;
  12. }
  13. .row{
  14. display:inline-block;
  15. width:20%;
  16. margin-bottom:25px;
  17. }
  18.  
  19. /*set minotar avatars as big as 250px, Enjin is 175px I believe*/
  20.  
  21. .row img{
  22. width:100px !important;
  23. height:100px !important;
  24. }
  25. .divider-row .title{
  26. font-size:24px;
  27. margin-bottom:25px;
  28. border-bottom:4px solid red;
  29. padding-bottom:25px;
  30. margin-top:25px;
  31. }
  32. .contentbox .block-title .text .mask{
  33. font-size:40px;
  34. overflow:visible !important;
  35. margin-bottom:30px;
  36. margin-left:0px !important;
  37. }
  38. .m_members .table td.col-avatar{
  39. width:100% !important;
  40. padding:0px !important;
  41. }
  42.  
  43. </style>
  44.  
  45. <script>
  46. $( document ).ready(function() {
  47. $('.m_members .element_smalltitle').removeClass('element_smalltitle');
  48.  
  49. $( ".m_members img" ).attr('src',function(i,e){
  50. return e.replace("/medium","/avatar");
  51. });
  52.  
  53. $( ".m_members img" ).attr('src',function(i,e){
  54. return e.replace("/74","/250");
  55. });
  56.  
  57.  
  58. });
  59. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement