Do you want to display a circle and text only on desktop screens? Here's how you can achieve it:
<div class="circle">Text Here</div>
If you are able to hide the circle using media queries for desktop screens:
@media screen and (min-width: 600px) {
.circle{
//Circle design
}
}
The issue might be that the 'Text Here' within the Div is still visible. Do you know how to hide the text as well?
If anyone has a solution, please share! Thank you!