为 MailChimp 添加 2 列布局 HTML CSS

Adding 2 column Layout for MailChimp HTML CSS

我头晕目眩。我有一个从 MailChimp 导出的 mailchimp 布局。现在布局是 3 列,但在 Mobile 中是 1 列。 这是代码笔:goo.gl/Fj8Ct7

有人可以帮我在移动视图中将其设置为 2 列布局吗?

我真的很困惑。

最好的, 麦克

尝试将 .columnWrapper 中的 css 中的 max-width: 480pxwidth 100% 更改为 50%

@media only screen and (max-width: 480px){
        .columnWrapper{
            max-width:50% !important;
            width:50% !important;
}

最终结果