Nieuwsbrief aanmelding

Mailchimp aanmelding

Compact signup form

  1. Copy code to stylesheet
  2. Add class “ff-compact” to the FluentForm widget.
  3. Add class “ff-compact__input” to input
  4. Add ckass “ff-compact__button” to button
				
					/* ff compact */

.ff-compact {
    background: white;
    border-radius: 6px;
    
    fieldset {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    &__input {
        padding: 8px;
        margin: 0!important;
        flex: 1px;
        flex: 1 1 auto;
    }
    
    &__button {
        flex: 0 0 auto;
        margin: 0 8px 0 0!important;
        
        button {
            border-radius: 4px!important;
        }
    }
}