centering banners and making responsive

Discussion in 'ColorWay WordPress Theme' started by atlmommy, May 13, 2013.

  1. atlmommy

    atlmommy New Member

    Joined:
    Apr 23, 2013
    Messages:
    6
    Likes Received:
    0
    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
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    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;
    }
     
  3. atlmommy

    atlmommy New Member

    Joined:
    Apr 23, 2013
    Messages:
    6
    Likes Received:
    0
    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
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    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.
     
  5. atlmommy

    atlmommy New Member

    Joined:
    Apr 23, 2013
    Messages:
    6
    Likes Received:
    0
    Thanks! I'll give that a try :)
     

Share This Page