MyBB Community Forums

Full Version: Fix this CSS error with the "?" at the top
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

When you go to view a topic, this symbol is at the top "?"
I know it has something to do with this maybe?

<php ?>

But I am not sure, where may I find the template to edit?

[Image: HZOh5_Fi.png]
have you recently added any plugin related to topics or modified showthread.php file ?
does the symbol disappear when you disable all the plugins ?
It looks like you have a stray ? in your showthread template, at the end of this JavaScript code:
<script type="text/javascript">
jQuery.noConflict();
jQuery("#bottomscroll").hide();
jQuery(window).scroll(function(){
      if(jQuery(window).scrollTop()>250){
         jQuery("#bottomscroll").fadeIn();
      }else{
         jQuery("#bottomscroll").fadeOut();
      }
});
</script>?