document.write("
<!-- Begin "Align 2 form fields horizontally" || Help center --> <!-- Add to Settings->HTML/CSS->Head --> <!-- CS:20210420-15-1 --> <style> @media screen and (min-width: 768px) { form { display: flex; flex-wrap: wrap; justify-content: space-between; } form div { width: 100%; } /* replace "1" with the number of the first field that you want to align horizontally */ .form>*:nth-child(1), /* replace "2" with the number of the second field that you want to align horizontally */ .form>*:nth-child(2){ width: 47%; } } </style> <!-- End "Align 2 form fields horizontally" || Help center -->