简体   繁体   中英

Adding 2 column Layout for MailChimp HTML CSS

I'm in a tizzy here. I got a mailchimp layout which I exported from MailChimp. Right now the layout is 3 column, but in Mobile it's 1 column. Here is the codepen: goo.gl/Fj8Ct7

Can someone help me to get it to be 2 column layout in mobile view? 例

I'm in a real pickle here.

Best, Mike

Try changing your .columnWrapper in your css where max-width: 480px from width 100% to 50%

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

FINAL RESULT

[1]:https://i.stack.imgur.com/b6WPT.png

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM