Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #398169

    hi following this thread almost worked

    https://kriesi.at/support/topic/different-logo-for-mobile-version/

    but unfortunatly on mobile all the logos are displayed and the standard one is not turned off please see at

    http://www.mudgeplumbing.co.uk/

    #398172

    It nests the mobile logo within the div logo

    In mobile that turns off the display for the entire div

    #398179

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    .logo a.second-logo {
    display: block!important;
    }}

    Best regards,
    Yigit

    #398189

    Thanks yigit will try now, basically the issue is that second logo is nested with the logo div itself

    I already placed important, I did try what your saying this is my css. The issue is I have to place the important rule on the first .logo css as in the theme it has a display rule already that overrides it if important is not in plcae. Resulting in both the mobile and non mobile logos rendering

    @media only screen and (min-width: 480px) {
    .second-logo { display: none; }}
    @media only screen and (max-width: 480px) {
    .logo { display: none!important; }
    .logo a.second-logo {
    display: block!important;
    }

    #398190

    resolved! thank you yigit for helping me

    I used this css

    @media only screen and (min-width: 480px) {
    .second-logo { display: none; }}
    @media only screen and (max-width: 480px) {
    .logo a { display: none!important; }
    .logo a.second-logo {
    display: block!important;
    }
    }

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘different logo for mobile’ is closed to new replies.