• Hi,

    I would like to (if such is possible) locate the html/form and edit the <script> tag to remove unnecessary forms that were added. Is this possible with my PHP/HTML site?

    If so, where can I locate the relevant file to edit and upload in the copy of my wordpress site I downloaded via filezilla?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jaylad

    (@jaylad)

    to clarify, I’d like to remove “unnecessary span” not “unnecessary form” tags

    There aren’t HTML files in the same way a static site has. Where are these tags?

    Thread Starter jaylad

    (@jaylad)

    I know. I was sleepy last night, wow.

    I figured out how to fix this issue. The fix will particularly resolve the issue of WordPress inserting
    tags that schew the aesthetics of forms. The style sheet can be downloaded/edited(remote server panel in filezilla), , then resubmitted to the remote server using filezilla(see youtube tutorials to learn how to edit such a file).

    In style.css(or relevant stylesheet), insert

    To eliminate inserted breaks: form li br {display: none;}

    To eliminate inserted spans: form li span {display: none;}

    You should not modify theme files – as your changes will be lost when the theme is updated. Instead these kinds of changes should be made in a Child Theme or in Custom CSS.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove spans from contact form’ is closed to new replies.