Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • robosavvy Friend
    #185992

    Hi,

    When i test my website on a mobile, it does not resize the logo so it can fit the screen.
    What can be wrong?

    Thanks.

    Ninja Lead Moderator
    #487214

    This way will help you resize image logo displayed in your device

    Open templates/ja_onepage/css/custom.css file

    Add new script

    /* mobile */ @media (max-width: 767px) {
    .logo-image a {
    width: 345px;
    height: 91px;
    background-image: url(../images/robosavvylogo_smartphone.png);
    }
    }

    /* tablet */ @media (min-width: 768px) and (max-width: 979px) {
    .logo-image a {
    width: 345px;
    height: 91px;
    background-image: url(../images/robosavvylogo_tablet.png);
    }
    }

    /* fullsize */ @media (min-width: 1200px) {
    .logo-image a {
    width: 345px;
    height: 91px;
    background-image: url(../images/robosavvylogo.png);
    }
    }

    And change width and height match with logo image size

    Let me know the result

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  Ninja Lead 11 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum