Hi,
As you have added your own CSS for that area you will need to modify it to your needs.
iPhone CSS fix:
@media only screen and (max-width: 767px) {
.newsletter:nth-of-type(odd) {
margin-bottom: 30px;
}
}
Your code is not working in IE because .newsletter
does not have a width set. The columns will inherit a width of 50%, as there is not enough room for two columns at 50% IE will stack the layout, likely caused by your padding. You will need to add a width
also to your class, try 47% and tweak it to your needs.
Thanks,
David