Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #489107

    I added css to make my logo bigger
    .logo a {
    height: 200px;
    }

    .logo {
    width: 300px;
    height: 200px;
    }
    worked great, but makes logo on mobile small. i tried a media query in quick css but did not seem to work. any idea how i can make logo bigger for mobile.
    http://customrollingpapers.net

    #489456

    Hey John!

    try this code:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    max-height: 100px;
    }}
    

    and adjust as needed.

    Regards,
    Andy

    #489661

    That did it. thanks for your quick response. i really appreciate it.

    #489915

    Hi,

    Great, glad we could help :-)

    Cheers!
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Logo image size’ is closed to new replies.