• Resolved svanreisen

    (@svanreisen)


    HI,
    when I use the WPtouch plugin users who select the desktop version on their mobile device have a problem entering data like an email address. When they enter their email address the system will breakup their emailaddress and adds an “-“.

    so for instance entering an email address will look like this:
    jandegroot @hotmai-
    l.com

    The widget that is collecting the email address is only available when a user selects the Desktop version in WPtouch

    is there a way I can fix this breaking up?

    thanks

    https://www.ads-software.com/plugins/wptouch/

Viewing 4 replies - 1 through 4 (of 4 total)
  • That is quite odd –?can you post the URL for your site?

    Thread Starter svanreisen

    (@svanreisen)

    Thank you. The url is https://www.heikracht.nl

    it is the widget that prompts you to subscribe to our newsletter : “MELD JE AAN VOOR ONZE NIEUWSBRIEF!”

    Is the erroneous formatting happening in the form or in your backend? I was able to complete the form and received a subscription notification.

    You might want to check if it’s just back-end display formatting, as well as whether it happens with WPtouch disabled (it doesn’t seem to be caused by WPtouch).

    Thread Starter svanreisen

    (@svanreisen)

    Hi Martin,
    thank you for your prompt reply. You put me in the right direction to fix this problem, it’s in the style.css sheet of my website’s theme. In this theme I changed the line “-webkit-hyphens: auto;” to “-webkit-hyphens: none;”. The .widget area now looks like this and it works as a charm! Thanks!

    .widget {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-hyphens: none;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin: 0 0 23px;
    margin: 0 0 2.3rem;
    padding: 0 0 23px;
    padding: 0 0 2.3rem;
    word-wrap: normal;

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘email breaking up’ is closed to new replies.