I would like to center logo in page header

Discussion in 'ColorWay WordPress Theme' started by imagegrafx, Feb 14, 2013.

  1. imagegrafx

    imagegrafx Member

    Joined:
    Jan 12, 2013
    Messages:
    76
    Likes Received:
    0
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .logo img {
    margin-left: 165px;
    }
    @media only screen and ( max-width: 768px ) {
    .logo img {
    margin-left: 1px;
    }
    }
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .logo img {
    margin-left:75px;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .logo img {
    margin-left: 1px;
    }
    }
     
    @media only screen and (max-width: 480px){
    .logo img {
    margin-left: 1px;
    }
    }
     

Share This Page