Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1343881

    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?

    #1343904

    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

    #1344061

    Hello, I have added this into Quick CSS, but the social icons still aren’t showing on mobile in portrait.

    #1344090

    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

    #1345355

    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?

    #1345366

    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

    #1345536

    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?

    #1345571

    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

    #1345893

    I tried this and it looks like the bottom of the logo gets cut off but there’s still no padding

    #1346017

    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

    #1346323

    That works. Thanks! You can close this.

    #1346338

    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

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Social Icons don't appear in Portrait Mode on Mobile’ is closed to new replies.