Move main logo to the left 5px and appear bigger on mobile

Discussion in 'GeoCraft WordPress Theme' started by leosherlock, Feb 14, 2015.

  1. leosherlock

    leosherlock Member

    Joined:
    Dec 23, 2014
    Messages:
    80
    Likes Received:
    0
    Hi there,

    I need to move the main logo 5px to the left, and appear a little bigger on mobile.

    I have attached images.
    Thank you,
    Leo
     

    Attached Files:

  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Leo,

    Use the css code given below.

    Code:
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .header_wrapper .logo_wrapper .logo img {
    margin-left: -5px;
    width: 80%;
    }
    }

    Thanks,
    Praveen
     

Share This Page