Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #227676

    HI,

    I used the CSS display: none; in a element:

    .page-id-7165 #av_section_1 { display: none ; }
    }

    I would like to disable this display: none; in mobile devices. I used:

    @media only screen and (max-width: 479px) {
    .page-id-7165 #av_section_1 { display: ; }
    }

    But no effect. How can I disable this display: none ?

    #227775

    Hi!

    This:

    @media only screen and (max-width: 479px) {
    .page-id-7165 #av_section_1 { display: block; }
    }
    

    Best regards,
    Josue

    #227789

    Thanks Man,

    Perfect!

    #227792

    You are welcome :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Disable the "display: none;" in mobile devices’ is closed to new replies.