We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 6789
    • 11 Posts
    Hello, I am a newbie to Modx and trying to insert a div and form field input that connects to an insurance quote system. The problem is once the code is added within the homepage content section via the html wysiwyg editor, the FORM INPUT FIELD IS NOT CLICKABLE to enter text? I thought it was a z-field issue but could not find the culprit. Abny help would be appreciated.

    http://www.speedyfloridainsurance.com/

    Dave
      • 5340
      • 1,624 Posts
      Your input field is disabled: disabled="true"
      Change
      <input id="piazipcode1" class="entryzip" onkeypress="return submitenter(this,event)" checked="0" disabled="true" maxlength="5" name="piazipcode1" readonly="true" type="text" />


      to

      <input id="piazipcode1" class="entryzip" onkeypress="return submitenter(this,event)"  maxlength="5" name="piazipcode1"  type="text" />


      More on this:

      What’s checked="0" got to do with your input field? Checked is used for radio buttons.

      Use http://validator.w3.org/ to validate your code.