Archived topic
disable single post hero only on mobile
3 replies · Started by liz on January 10, 2022
Viewing posts 1–4 of 4
Hi,
How can I remove single post hero [only on mobile] thanks. I am using dispatch theme
Hi there,
Try adding this CSS:
@media (max-width: 768px){
.gb-container.gb-container-8b6d1c4b {
display: none;
}
}
Thank you..Vin!
Actually, I think you may have to change it to this:
@media (max-width: 768px){
body.post .gb-container.gb-container-8b6d1c4b {
display: none;
}
}
Just to be sure it only applies on the post pages. :D
This archived topic is closed to new replies.