Logo is Much Smaller After Upgrade From Andrina-Lite to Pro

Discussion in 'Andrina WordPress Theme' started by sandymcdonald, May 31, 2013.

Thread Status:
Not open for further replies.
  1. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    The logo is much smaller. I would like it to appear as in the lite version.

    When I added the following code to the custom css it made the logo the same size as it was in the lite version, but it did not resize for the responsive version and is off the page.

    Code:
    .header .logo img {
    width: 320px;}
    Can I keep the code in the custom css to make the the logo larger, but add code to make the logo resize for the responsive version? If so, what code would I use?
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

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

    Code:
    @media only screen and (max-width: 480px){
    .header .logo img {
    width: 276px;}
    }
     
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .header .logo img {
    width: 256px;}
    }
     
  3. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    Logos on non-responsive and responsive look great now! Thank you.
     
Thread Status:
Not open for further replies.

Share This Page