Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author xnau webdesign

    (@xnau)

    If you use the inspector in your browser developer tools on the checkbox, you’ll see that bootstrap is adding a -20px left margin to those elements. All you need to do is set the left margin of the checkboxes to 0.

    Thread Starter rturn8663

    (@rturn8663)

    Thank you.

    For the benefit of others, I found this code in the bootstrap.css file in the …/themes/politicize/frontend/css folder.

    In order to get padding between the checkbox and the help text, I had to add this line:

    padding-left:5px;

    to this code block
    .pdb-signup .helptext {
    display:block;
    margin-left:150px;

    in the …wp-content/plugins/participants-database/css/participants-database.css file

    Plugin Author xnau webdesign

    (@xnau)

    It’s better do this as a custom CSS setting so you won’t lose your changes when the plugin is updated. It’s just not a good idea to modify the plugin files directly.

    Plugin settings, Custom CSS tab.

    Thread Starter rturn8663

    (@rturn8663)

    Got it, thank you for pointing that out! Plug-in is configured and ready to go!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Padding to right of checkboxes in input form’ is closed to new replies.