Fit picture in mobile version

0

Colleagues.

I have a site that he can adjust to in the mobile version, but the logo looks as if he creates a space below it and pushes the other div down. The code I'm using is this:

@media (max-width: 600px) {
    .logo-marca{ width: 93px; height: 103px;}
}

    
asked by anonymous 01.02.2017 / 01:23

1 answer

0

I managed to resolve. Follow below:

@media (max-width: 600px) {
    .logo-marca img{ width: 93px; height: 103px;}
}
    
01.02.2017 / 01:43