Is there any way I can show social icons in portrait mode? On mobile, they appear in landscape only. Also, is there a way to reduce the logo size in mobile so it’s not right up against the black bar above it where the icons should be?
Hi John,
Please check if you have this CSS added in Quick CSS:
@media only screen and (max-width: 769px) {
#top .social_bookmarks {
display: none !important;
}
}
If so, then please remove it, and replace it with this:
@media only screen and (max-width: 767px) {
#top .social_bookmarks {
display: block;
}
}
Best regards,
Rikard
Hello, I have added this into Quick CSS, but the social icons still aren’t showing on mobile in portrait.
Hi John,
Can you try to use this CSS code and see if it helps:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #header .social_bookmarks {
display: block !important;
}
}
Best regards,
Nikko
Hello, sorry I’m just following up on this. This works for the social icons, but the logo is still fairly large, especially on mobile. Is there any way to make the size smaller and have some white space above and below the logo?
Hi,
Thanks for the update. Please try this CSS as well:
@media only screen and (max-width: 767px) {
.responsive .logo img, .responsive .logo svg {
max-width: 65%;
}
}
Best regards,
Rikard
Thank you! Is there any way to add padding for the logo on desktop? When scrolling, the logo is smaller, but there’s no padding between the logo and other elements?
Hi,
Thanks for the update. Please try this CSS as well:
.header-scrolled span.logo img, .header-scrolled-full span.logo img {
max-height: 35px;
margin-top: 5px;
}
Best regards,
Rikard
I tried this and it looks like the bottom of the logo gets cut off but there’s still no padding
Hi,
Please try this CSS instead:
.header-scrolled span.logo img, .header-scrolled-full span.logo img {
max-height: 35px !important;
margin-top: 5px;
}
Best regards,
Rikard
That works. Thanks! You can close this.
Hi,
Great, I’m glad that you got it working. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard