Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1354047

    I have added a MailChimp widget to the footer of a website. The fields are displayed in the wrong order. The surname field is first and then the name field. I would like the name field to come first and then the surname field to come second.

    I have tried to edit the fields in MailChimp but they are displayed there correctly.

    Thanks!

    #1354167

    Hey engage24,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

      #footer .avia-mailchimp-form fieldset {
      display: flex; 
      flex-wrap: wrap; 
      }
      #footer .avia-mailchimp-form #element_avia_1_1 {
          order: 1; 
      }
      #footer .avia-mailchimp-form #element_avia_2_1 {
          order: 2; 
      }
      #footer .avia-mailchimp-form #element_avia_0_1 {
          order: 3; 
      }
      #footer .avia-mailchimp-form .form_element:not([id*='element_avia_'])  {
          order: 4; 
      }

    After applying the css, please clear your browser cache and check.
    The expected results:
    2022-06-04_008.jpg

    Best regards,
    Mike

    #1354284

    Hi Mike,
    Thank you so much for the speedy response.
    It worked perfectly.
    Camilla

    #1354299

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Mailchimp widget fields the wrong way round’ is closed to new replies.