How do I move the hover text from its default position.

  • adzarr
    Asked on May 19, 2019 at 9:25 AM

    How do I move the hover text from its default position. In its current position, it is covering my input box. The previous example is no longer available.

  • Welvin Support Team Lead
    Replied on May 19, 2019 at 10:07 AM

    You have to target the class selector of the hover text which is .form-description. The following custom CSS codes:

    .form-description {

        top: 6px;

    }

    You can add left: 6px; or right: 6px; in the CSS to adjust the margin.