Make slider clickable for mobile

Hello. I was wondering if you could help. I’d like to make the slider clickable on mobile - could you explain? I know it’s to do with the child theme but I’m not sure what that is so if it could be in beginner terms I’d appreciate it. Thanks in advance! My site is wheregoesrose.com

Hi @rosemunday,

I hope you are well today and thank you for your question.

You can try achieving this displaying clickable slider title on mobile by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

@media (max-width: 768px){
#page .flex-caption {
    display: block;
}
#page .flex-caption .read-more,
#page .flex-caption ul {
    display: none;
}
#page .flex-caption > a h2 {
    font-size: 20px;
}
}

Best Regards,
Movin