Archived topic
Need to disable a elemenet in Mobile only
1 reply · Started by Gopi on April 25, 2021
Viewing posts 1–2 of 2
I want to disable this element <div class="page-hero"> in mobile and want to display only the post title how can I achieve that,
Kindly help me
thanks
Hi there,
simplest option would be to use some CSS like this:
@media(max-width: 768px) {
.page-hero {
background-color: rgba(224,49,79,0.7);
background-image: none;
}
}
This will remove the background image and just leave the solid background color in its place.
This archived topic is closed to new replies.