• I am trying to make a list of options in an enquiry form. The spacing is annoying because a <br> is added between <label>elements.
    <p class="input"><label><input type="checkbox" style="margin:0; padding: 0; border: none" name="qcfname6_HighContributionCulture" value="High Contribution Culture" > High Contribution Culture</label><br><label><input type="checkbox" style="margin:0; padding: 0; border: none" name="qcfname6_LeadershipandTalentDevelopment" value="Leadership and Talent Development" > Leadership and Talent Development</label><br><label><input type="checkbox" style="margin:0; padding: 0; border: none" name="qcfname6_OperationalEfficiencyandEffectiveness" value="Operational Efficiency and Effectiveness" > Operational Efficiency and Effectiveness</label><br><label><input type="checkbox" style="margin:0; padding: 0; border: none" name="qcfname6_CulturalandChangeManagement" value="Cultural and Change Management" > Cultural and Change Management</label><br></p>
    In the php creating the html you have some \n\r which probably creates that <br>. That <br> seems to create a large space between lines. I don’t know how to narrow this gap. Could you help?

    I do like this plugin very much and commend it to others. Thank you for your hard work.

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

    (@fullworks)

    a <br> just instructs the markup to move to a new line, <br> are not a format as such.

    The line height of the elements will impact the spacing

    you might need to do something like .qcf label { line-height: 1; }

    But I am guessing without you actually posting your URL

Viewing 1 replies (of 1 total)
  • The topic ‘added to’ is closed to new replies.