Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Error on "My Updates" page

0 votes

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 

asked Feb 1 in Q2A Core by DisgruntledGoat
edited Feb 1 by DisgruntledGoat

1 Answer

0 votes
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.
answered Mar 27 by echteinfachtv
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.
Got it - thanks.