• Resolved jdphoenix

    (@jdphoenix)


    Hello, we have a newsletter signup in our footer. I have it setup as a two column layout for the input fields. For some reason, it is displaying each field in a separate row. I have checked for conflicting CSS and unable to find anything. Any ideas? Thanks so much

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @jdphoenix

    I hope you’re well today and thank you for your question!

    I checked and I wasn’t able to identify conflicting CSS either, but there must be some because form markup clearly shows that it is a column layout.

    So I checked instead if I can find some workaround and it seems that this additional CSS does the trick:

    #forminator-module-31169 .forminator-row .forminator-field-name {
      width:49%;
      clear:none;
      float:left;
    }
    #forminator-module-31169 .forminator-row .forminator-field-email {
      width:49%;
      clear:none;
      float:right;
    }
    #forminator-module-31169 .forminator-row {
      width:100%!important;
      clear:both;
    }
    
    #forminator-module-31169 .forminator-row-last .forminator-col {
      padding-top:15px;
    }

    Would you give it a try?

    Note:

    – please add it to theme’s custom css option or similar way but not to directly to form’s custom css in Forminator
    – if there’s any cache on site – you may need to purge it after adding code.

    Kind regards,
    Adam

    Thread Starter jdphoenix

    (@jdphoenix)

    Hi there,

    Thanks so much for the reply and providing a solution. Looks good on my end. Can you confirm on yours?

    Plugin Support Zafer – WPMU DEV Support

    (@wpmudevsupport15)

    Hi @jdphoenix,

    I hope you are doing well today!

    I can also confirm the fields are showing up in one row and two columns as well. We are marking this thread as resolved accordingly.
    Please let us know in case you need further help.

    Kind regards,
    Zafer

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Column ?’ is closed to new replies.