Forums

Extra getting inserted before on page display (1 post)

  1. rtomasso
    Member
    Posted 1 year ago #

    I just encountered a very strange problem. I'm editing page with a form in HTML mode and when the page is rendered, an extra
    is being inserted before every <input> tag. The relevant html source of the page looks like this:

    <tr valign="top">
              <td>Yes <input name="Question1_1" type="radio" value="Yes">&nbsp;&nbsp;&nbsp; No <input name="Question1_1" type="radio" value="No"> </td>
    </tr>

    And the resulting page source from the browser is this:

    <tr valign="top">
    <td>Yes<br />
    <input name="Question1_1" type="radio" value="Yes"> &nbsp;&nbsp;&nbsp; No<br />
    <input name="Question1_1" type="radio" value="No"> </td>
    </tr>

    There's nothing about form or input in my style sheet. Somehow a space is getting turned into a
    . Any ideas?

Topic Closed

This topic has been closed to new replies.

About this Topic