You have this console error:
It is from this code in templates:
This won't work in current versions of jQuery so will need to be removed. The theme author needs to update the theme.
Uncaught TypeError: $(...).error is not a function
It is from this code in templates:
<script>
$(function(){
$(".avatar").error(function () {
$(this).unbind("error").attr("src", "http://cewl.selfip.com/forum/images/default_avatar.png");
});
});
</script>
<script type="text/javascript">
$(".author_avatar img").error(function () {
$(this).unbind("error").closest('.author_avatar').remove();
});
</script>
This won't work in current versions of jQuery so will need to be removed. The theme author needs to update the theme.