Is there a way to hide a specific div using a media query, but have it show up when that div is within another specific div? This is how the CSS currently looks:
@media (min-width: 665px) {
.mrbcircle-ipad:not(.link-inside.mrbcircle-ipad) {
position:absolute;
display:none;
}
}
Basically, I want the .mrbcircle-ipad to be hidden when the screen is over 665px unless it's inside the .link-inside div.
Right now, the .mrbcircle is being displayed everywhere, which is incorrect. How can this be fixed?
Thank you, Anthony