I would like to use 2 different logo sizes - 1 big on the top (Center), and another smaller (main menu when scrolling down), how can I configure that?
Thanks.
I would like to use 2 different logo sizes - 1 big on the top (Center), and another smaller (main menu when scrolling down), how can I configure that?
Thanks.
Thanks for you reply,
Actually I want to add a bigger logo at the top center and when scroll down there was a smaller logo at the left main menu bar. In the mobile version, the hand phone will display the small logo too.
I failed to do that so i placed the logo image at the module Banner Top and the mobile version didn't show the small logo. How to display the logo in hand phone?
loonmei I failed to do that so i placed the logo image at the module Banner Top and the mobile version didn't show the small logo. How to display the logo in hand phone?
Try add this to override.css file (don't forget to enable override from Template Options -> Advanced tab): :
@media only screen and (max-device-width: 640px) {#gkBannerTop{display:block !important;}}
Kindly ensure to clear your browser cache if changes dont reflect
Thanks@teitbite#63678
yes, it was place same line with hamburger menu item. When i scroll down, the logo was disappear, can I make the logo display as the hamburger menu item?
loonmei When i scroll down, the logo was disappear, can I make the logo display as the hamburger menu item?
Try change the above CSS from :
@media only screen and (min-device-width: 640px) {#gkSocial{display:none !important;}}
to
@media only screen and (min-device-width: 640px) {#gkSocial{display:block !important;}}