Photos in slider - url problem

Hello,
I have a question. I wanted to deactivate contents on photo in slider - but I want to stay this image as a URL.
I use this code
.flex-caption {
display: none;
}
and it works, but image is not link any more. Is there any solution for this?
This is my site: http://traumaidysocjacja.pl

Thank you in advance
Basia

Hey there,
I hope you’re doing well today

You can use the following CSS to hide the everything except the title on the slider.
These are the only clickable elements on the slider, and the slider image isn’t clickable by itself.

/*remove category*/
ul.post-categories {
    display: none;
}
/*remove read more*/
div.read-more {
    display: none;
}

Best Regards,
Support

Thank you very much,
is there any posible to this title appears in phone mode (and tablet) ?

You can display slider title on phone mode by using following custom CSS code.


@media (max-width: 768px){
.flex-caption {
    display: block;
}
}

It’s work, but text isn’t “scaling” - as a result the text doesn’t fit on slider…
Is there any possible to scale it?

thank you in advance
Basia

You can resize slider text by using following custom CSS code.

@media (max-width: 568px){
body #page .flex-caption h2 {
    font-size: 25px;
    margin-bottom: 0;
}
}

@media (max-width: 768px){
    .flex-caption {
    display: block;
}
#page .flex-caption h2 {
    font-size: 35px;
}
}

You are the best! Thank you very much :slight_smile:

You are most welcome here :slight_smile: