Hi,
I’m really impressed how my new site looks on all devices. EXCEPT the buttons on the image slider on the home page don’t look good when viewed on a smartphone held vertically. They are big and cover the image.
Can I remove them for certain devices? Or do you have any advice?
dev.chicagochurch.org
Thanks!
I fixed it! To turn off the sub-heading and the buttons overlaid on my slideshow (vertical mobile device only), I added this CSS:
@media only screen and (max-width: 480px) {
div.avia-caption-content {display: none !important; }
.avia-slideshow-button {display: none !important; }
}