Logo Size on Mobile - Acme Themes
Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #16951
    David Jennings
    Participant

    Hi,

    When viewing the website on smaller screens like mobile and tablet, the logo appears larger and takes up more of the screen. I have made the logo 290 x 70 as recommended but no avail.

    Website I am having trouble with is: http://www.myappbuilder.co.uk

    Thanks

    #16963
    acmesupports
    Moderator

    Hello David Jennings,
    Try adding the below CSS codes on Appearance > Customize > Additional CSS.

    @media only screen and (max-width: 500px) {
       .custom-logo {
        width: 120px;
     }
    }

    Hope, this will help to decrease the logo size on mobile.

    Regards

    #16995
    David Jennings
    Participant

    Thanks for your quick reply, this has now fixed the issue on mobile, however, it is still way too big on tablets…?

    #17001
    acmesupports
    Moderator

    If the tablet logo is not small, please remove the above css and add the below one.

    @media only screen and (max-width: 787px) {
       .custom-logo {
        width: 120px;
     }
    }

    Let us know, how it works or not.

    Thank you

    #17058
    David Jennings
    Participant

    Works great now, thank you for your help.

    One more question, is there a way I can make pages full width (not contained in a page box) so I can have any page look like my homepage?

    #17078
    acmesupports
    Moderator

    Can you please provide the actual page link of that page with you want to make full width ?

    Thank you

    #17079
    David Jennings
    Participant

    It would be great for a few pages if I could pick and choose some how, here is one of them:

    DIY App Builder

    thanks

    #17087
    acmesupports
    Moderator

    Hello David,
    Please add the below CSS on Appearance > Customize > Additional CSS

    article.post, article.page {
        background-color: transparent;
        box-shadow: none;
    }
    article.post .content-wrapper,
     article.page .content-wrapper {
        padding: 0;
    }

    Hope, this will solve the issues.

    Regards

    #17102
    David Jennings
    Participant

    You are amazing! Thank you for all your help.

    #17121
    acmesupports
    Moderator

    Nice to know that your problem is solved.

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Logo Size on Mobile’ is closed to new replies.