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

    (@xnau)

    Unfortunately, there isn’t one answer that will give you what you want, it all depends on your theme, which template you’re using…you can try this, but no guarantees it will work. It’s best to read up a little on how CSS works so you can make things look the way you want.

    You can add your CSS rules to the “custom CSS” setting in the plugin settings

    to add vertical space, something like this might work:

    .pdb-signup input {
      margin-bottom: 10px;
    }

    if you want the form centered, you need to define it’s width then give it automatic margins with something like this:

    .wrap.pdb-signup {
      display: block;
      margin: 0 auto;
      width: 500px;
    }

    anyway, these might work for you, you can use them as a starting point to getting it to look the way you want.

    Thread Starter wengles

    (@wengles)

    wow – both of those codes worked like a charm! thank you for your great support!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘centering sign up form’ is closed to new replies.