center align the footer bar phone & email??

Discussion in 'Andrina WordPress Theme' started by deveshd, Apr 27, 2013.

Thread Status:
Not open for further replies.
  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Screen shot 2013-04-26 at 7.49.24 PM.png
    Since I'm not using the business hours area on the footer bar, I need to centre align the other two elements. Please help. Thanks!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .index-info .index-info-one{
    width:400px;
    margin-left:250px;
    }
    .index-info .index-info-two{
    width:400px;
    margin-left:250px;
    }
     
    @media only screen and (min-width: 768px) and (max-width: 960px) {
    .index-info .index-info-one{
    margin-left:35px;
    }
    .index-info .index-info-two{
    margin-left:35px;
    }
    }
     
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .index-info .index-info-one{
    margin-left:35px;
    }
    .index-info .index-info-two{
    margin-left:35px;
    }
    }
     
    @media only screen and (max-width: 480px) {
    .index-info .index-info-one{
    margin-left:35px;
    }
    .index-info .index-info-two{
    margin-left:35px;
    }
    }

    Adjust its value as per your requirements.
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Worked like a charm... thanks!
     
Thread Status:
Not open for further replies.

Share This Page