• Hi again, i have another question (sorry),

    the quizz form is built automatically like this :

    <form>
        <fieldset>
           <label></label> <br>
           <input></input> <br>
        </fieldset>
        ...
       <fieldset>
           <label></label> <br>
           <input></input> <br>
        </fieldset>
    </form>

    I’m trying to delete the <br> after each <input> or <label> but I don’t find them in the code, where are they ?

    Thanks again.

    https://www.ads-software.com/extend/plugins/quizme/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author DCoda

    (@dcoda)

    The code isn’t easily designed to be hacked.
    The best you can do is use css to hide them
    something like

    form fieldset br
    {
    display:none;
    }

    you may want to add more selectors to the css if you find it affecting other things.

    Thread Starter claudeine

    (@claudeine)

    Yes I know that, but isn’t a good solution and I need make more, just tell me the name of the right file please and I see.

    Thanks.

    Plugin Author DCoda

    (@dcoda)

    They are not in the code. WordPress filters seem to put them in after the form has been inserted into the page.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: QuizMe] how to edit template form’ is closed to new replies.