I ran into an issue where clickfunnels doesn’t have vertically align and when you customize the css it messes up the mobile layout.
I couldn’t duplicate it and make a mobile version and desktop. The desktop version would then not follow any css rules I made for it.
So here is the fix:
@media (min-width: 700px) {
[PUT THE SELECTOR ID OR CLASS HERE] {
display: flex;
align-items: center;
justify-content: center;
}
}