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 ?
Hi!
This:
@media only screen and (max-width: 479px) {
.page-id-7165 #av_section_1 { display: block; }
}
Best regards,
Josue
Thanks Man,
Perfect!
You are welcome :)