Is there a way to center my banners (ad banners) in the footer? I have searched the forum and don't see the same issue. Also, is there a way to make the banner size responsive so that it shows up right on iphones etc. Right now they are not responsive and they are larger than the rest of the layout on mobile devices. Donna www.eagleshsgroup.com
Hello Donna, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: @media only screen and (max-width: 480px){ .footer-container img { margin-left: 0px!important; width: 100%; }} @media only screen and (max-width: 767px){ .footer-container img { margin-left: 0px!important; width: 100%; }} @media only screen and (max-width: 960px) and (min-width: 768px){ .footer-container img { margin-left: 118px!important; }} .footer-container img { margin-left: 200px; }
Works great for the mobile responsive part Thanks! Still not centering correctly on some of the banners because they vary in size. (I have little control since they are ad banners and not all seem to be standard sizes for whatever reason) Is there a way to center them regardless of size? Donna
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer-container img {width:465px;} It will resize all ads to a fixed size.