Hey Nick,
If you look at the CSS toward the bottom, there's a section with a /* button */ label just above the responsive styles (copied below for reference).
You'll notice a few...
The CSS 'order' property within a 'display:flex;' parent container will allow you to adjust the display order of items inside the container.https://www.w3schools.com/cssref/css3_pr...
I definitely agree that it's easier to style a label inside a row or column or fieldset where you can append a selector to the parent element. In the case of having different label...
You could add a class (or any html) to the individual label (and display text for radio/checkboxes) from within the form editor. Alternately, you could use a fieldset to create a 2...
This is a case where you'd probably want to create a division between ALL field labels and then field labels inside a fieldset. For example, if you had 1 select and 10 text inputs,...
...looks like you've got this moving in the right direction already, but here's an alternate approach to this issue that's worked for me, for anyone else who's running into a simil...
What's odd is that everything else in the section that's hidden for large screens (or vice versa) EXCEPT the form works...it's just the Marketo form that has the issue...
Technic...
Sounds like you're running into one of the issues with this approach to web development - simply creating add'l sections (mobile, tablet, desktop) that have different content or st...
I haven't seen something like this before when it's setup right, but I'd need to see the code you're using for this email to be sure (both in the default case and then in the dynam...
This could have something to do with the container size here - it looks like you've got a 700px wide container for the bg image and then a centered 600px container in the middle of...