Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • cjsscarlos Friend
    #202225

    Hi, friends!
    How to change logo size. responsive layout.

    in desktop

    .logo-image a {
    background-image: url(“../../../images/themes/abstract/logo.png”);
    background-repeat: no-repeat;
    width: 151px;
    height: 41px;
    }
    /****
    to:
    ***/
    .logo-image a {
    background-image: url(“../../../images/themes/abstract/logo.png”);
    background-repeat: no-repeat;
    width: 985px;
    height: 200px;
    }

    ——————–
    Module Positions: OK.
    Responsive Layout: ??? How to change logo size ? template-responsive.css or home-responsive.css?

    pavit Moderator
    #553493

    Hi

    Responsive feature doesn’t works if you add width and height to your logo image, you can override your logo image for every screen size, you can do this in this file templatesja_merocssthemesabstracttemplate-responsive.css

    @media (min-width: 980px) and (max-width: 1199px)
    .logo-image a {
    background-image: url("../../../images/themes/abstract/yourlogo.png");
    background-repeat: no-repeat;
    width: dimension for the screenpx;
    height: dimension for the screenpx;
    }

    @media (min-width: 768px) and (max-width: 979px) {
    .logo-image a {
    background-image: url("../../../images/themes/abstract/yourlogo.png");
    background-repeat: no-repeat;
    width: dimension for the screenpx;
    height: dimension for the screenpx;
    }

    and so on for all screen sizes

    cjsscarlos Friend
    #553503

    @pavit

    Solved.
    Thanks a lot.

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

This topic contains 3 replies, has 2 voices, and was last updated by  cjsscarlos 10 years, 1 month ago.

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