How have you customised OCUK Forums?

Associate
Joined
19 Jun 2010
Posts
1,695
Location
Southampton City Centre
So I am a bit of a gamer, so I browse the games section, but I get tired of the oversized images stretching the forum width.

So I got stylebot addon for chrome and added

Code:
img {
	max-width: 1000px;
}
then I thought "what if I want to see the full size?

So I got jQuery Shell addon for chome and added

Code:
$(document).ready(function() {
  $('td.alt1 img').each(function() {
    var htmlSrc = $(this).attr('src');
    $(this).wrap('<a href="' + htmlSrc + '">');
  });
});

I know very little about jQuery but this works and it's good enough for me.

So if you have, what have you modified on these forums with your infinite knowledge? Or perhaps you have some other site you're proud of a modification on?

Let me know in the comments below :)
 
Last edited:
Back
Top Bottom