• Recently I came up to an issue while designing the Subscription form of Mailpoet 3 where the form submit button is <input type="submit" value="Subscribe">.

    And input type submit doesn’t allow CSS pseudo elements to be added like :before or :after.

    The same submit effect can be achieved by a <button type="submit">Subscribe</button> (not button type button) where designers have more option to design the button (whether using the CSS pseudo element or by introducing icon font along with the text).

    Can you please replace the

    <input type="submit" value="Subscribe">

    tag with

    <button type="submit">Subscribe</button>

    on the next release?

Viewing 1 replies (of 1 total)
  • Plugin Author MailPoet

    (@mailpoet)

    @wzislam on the next release is not possible, but I’ll make sure to forward your feedback to our developers, thanks for sharing it.

Viewing 1 replies (of 1 total)
  • The topic ‘Form Submit button needs to be button type submit instead of input type submit’ is closed to new replies.