Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #244368

    Hi guys,
    never worked with @media screen before so here goes.

    @media screen and (max-width: 690px) {    
        .logo_addition img { 
    visibility: hidden;
    display: none;
    }
    }

    I have added this code to my Quick CSS on enfold.
    now when the screen gets to the 690px point it doesnt add to my .logo_addition code.
    if i manually add it via source it works perfectly.

    now my question does enfold overwrite this?
    Regards

    #244410

    Hey corepart!

    Please try adding following code to Quick CSS

    @media only screen and (max-width: 690px) {    
        .logo_addition img { 
    visibility: hidden!important;
    display: none!important;
    }
    }

    Regards,
    Yigit

    #244416

    Hi Yigit,
    Tried that still not applying to the css code.
    This is my issue.

    as you can see I am wanting it to get a specific size being 690px then remove
    that image with the phone number on it.
    Regards

    #244418

    Hey!

    Please remove the dot in class=”.logo_addition”

    Cheers!
    Yigit

    #244439

    Yigit,
    Thank you very much that solved the problem.
    /me bows before the master

    #244440

    Hi!

    You are welcome, glad we could help! :) Have a great weekend!

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Header + @media screen’ is closed to new replies.