How do I change the size of the content slider headline on mobile
I’m already using other css to control the font. Please see private comments.
Hey mnydish,
Your css above sets the font size to 60px, to adjust this for mobile, try adding this css:
@media only screen and (max-width: 767px) {
.avia-content-slider .slide-entry-title {
font-size: 40px;
}
}
adjust to suit, after applying the css, clear your browser cache.
Best regards,
Mike