Tagged: logo size
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
Hey John!
try this code:
@media only screen and (max-width: 767px) {
.responsive .logo img {
max-height: 100px;
}}
and adjust as needed.
Regards,
Andy
That did it. thanks for your quick response. i really appreciate it.