Changing/Resizing Logo on small devices

Discussion in 'Squirrel WordPress Theme' started by igormorgado, Jul 10, 2013.

  1. igormorgado

    igormorgado New Member

    Joined:
    Jun 24, 2013
    Messages:
    12
    Likes Received:
    0
    Is there a way to scale down (or use another logo) in small sized devices?

    When I go under 480px the logo cannot be rightly displayed.

    http://projetoemnomedopai.com.br/

    Best regards
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    @media only screen and (max-width: 480px){
    .logo img {
    width: 90%;
    }
    }
    This will solve your issue.
     

Share This Page