Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
703 views
in Q2A Core by
edited by

When I load the My Updates page in Opera, it gets cut off near the bottom. The HTML ends right after <IMG SRC="

Here's a screenshot:

This doesn't look like a CSS/rendering error, as the HTML is different and cuts off for some reason.

EDIT: same thing happens on this page too: http://question2answer.org/qa/user/NoahY 

1 Answer

0 votes
by
What browser you are using? Firefox 11 works, no cutting of.

PS: The html gets not validated properly, e.g. there is an open h1 that is not closed, and there is a closing div but no opening. However, most of the browsers ignore these errors.
by
As I said in the question, this was in Opera. But the pages seem to be working at the moment so maybe gideon fixed it.
by
I guess this was some kind of connectivity issue, where the connection was lost in the middle of the HTML stream.

As for the unclosed H1 and DIV, where are you seeing that?
by
Navigate to http://www.question2answer.org/qa/user/gidgreen from html line 110:

<H1>
  <DIV CLASS="qa-favoriting" ID="favoriting">
  <INPUT TITLE="Add user gidgreen to my favorites" NAME="favorite_U_1_1" onClick="return qa_favorite_click(this);" TYPE="submit" VALUE="" CLASS="qa-favorite-button" onmouseover="this.className='qa-favorite-hover';" onmouseout="this.className='qa-favorite-button';">
  </DIV>
 User gidgreen
</H1>

Validator is giving:
line 111 column 7 - Warning: <div> isn't allowed in <h1> elements
line 110 column 6 - Info: <h1> previously mentioned
line 113 column 7 - Warning: discarding unexpected </div>
line 110 column 6 - Warning: trimming empty <h1>

I'm using HTML Tidy in Firefox.
by
Got it - thanks.
...