I have a banner ad in sidebar-1 and a different banner ad in sidebar-2 on one of my pages. See here: https://www.treefruit.com.au/orchard/crop-protection/frost When you reduce the size of the page the banner ads change sizes differently. One becomes very small if you look at it on a phone. How can I make it so that they are both the same size on big and small screens?
NickMo1
You can try with this custom css:
@media (max-width: 375px) { #sidebar-2 { padding: 0; } }
Thank you. That helped for phone, but not for tablet, so I changed 375px to 750px and it is better for phone and tablet. Thanks.