Hi,
On this page http://kirurgiroskilde.dk/fotogalleri/ I’ve used the photo gallery option. When viewing the photos in lightbox on a tablet (iPad), the black label from the first selected picture sticks on top, while browsing the other photos in lightbox. The title underneath changes correctly.
If no fix, is there any way to turn of the labels?
Regards,
Christian
Hi sepruda!
you can turn tooltips off for iPad screen size with this code in Quick CSS field:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.avia-tooltip.avia-tt {
display: none;
}}
Regards,
Andy
Hi Andy,
The black labels still appear after adding that css-snippet unfortunately.
Hey!
then try to add an !important into my code:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.avia-tooltip.avia-tt {
display: none !important;
}}
Cheers!
Andy
Great, worked!