Center Justify header logo

Discussion in 'Infoway WordPress Theme' started by robert l, Jul 14, 2013.

  1. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    Is it possible to center justify the header logo, while maintaining the functionality of the responsive site for smartphones?

    Thank you.

    Robert
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .logo a img {
    margin-left: 321px;
    }
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .logo a img {
    margin-left: 0px;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .logo a img {
    margin-left: 0px;
    }
    }
    @media only screen and (max-width: 480px){
    .logo a img {
    margin-left: 0px;
    }
    }
    This will solve your issue.
     

Share This Page