I would like to have the desktop alignment grid title left (as it is now) and the mobile alignment grid title in the center. How can I do this? I tried several options but that didn’t work.
Hey Maureen,
Thank you for the inquiry.
You can use this css code to adjust the text alignment of the grid title on mobile view:
@media only screen and (max-width: 989px) {
/* Add your Mobile Styles here */
.avia-content-slider .slide-entry-title {
text-align: center;
}
}
Best regards,
Ismael
Thank you. That works perfectly!