Here's the ultrabig screen - everything is fine - the header and the logo: https://yadi.sk/i/qmtjJgQqfbcEv
But the smaller screen makes these two (logo and the header) overlap: https://yadi.sk/i/yVTzODsffbcYf
Needs to be fixed.
Cyberek wrote:What will you say if I suggest to reduce logo size on small screens?
@media only screen and (max-width:821px) {
#gkHeader #gkLogo {
position: relative;
margin-top: 0 !important;
}
.dark-bg #gkMobileMenu i, .dark-bg #gkMobileMenu i::after, .dark-bg #gkMobileMenu i::before {
background: none repeat scroll 0 0 #222 !important;
}
}
teitbite wrote:Hi
I was asked to join discussion.
There is really not much place for the logo now. I would suggest a different change. Please add this code to css and let me know if You like it.
teitbite wrote:Hi
It doesn't look right on Your screen. Here is how it's like on my device and this is what I was aiming for.
@media only screen and (max-width:821px) {
#gkHeader #gkLogo {
position: relative;
margin-top: 0 !important;
}
.dark-bg #gkMobileMenu i, .dark-bg #gkMobileMenu i::after, .dark-bg #gkMobileMenu i::before {
background: none repeat scroll 0 0 #222 !important;
}
#gkPageContent {
padding-top: 0;
}
.single-page, .blog-page {
margin-top: 0 !important;
}
.single-page > .header, .blog-page > .header {
margin: 0;
}
}
teitbite wrote:Here is couple of additional classes
@media only screen and (max-width:821px) {
YOUR CODE HERE
}