Logo not Centered on Mobile Version

Discussion in 'Local Business WordPress Theme' started by claysyoung, Nov 12, 2013.

  1. claysyoung

    claysyoung Guest

    Joined:
    Sep 10, 2013
    Messages:
    16
    Likes Received:
    0
    I am having troubles centering the logo on the mobile version? Is there any trick to keep it centered instead of left justified? The sample website I am working on is www.youngswebsolutions.com

    Thanks in Advance!!!
     
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    @media only screen and (max-width: 480px){
    .header .logo {
    text-align: center;
    margin-left: 25px;
    }
    }
    This will solve your issue.
     

Share This Page