- leahrubin March 31, 2014 at 6:43 pm
Is there a way to make the caption on the slider *NOT* disappear when the webpage is resized? It looks to me like there is room for it.
Thanks!Juanfra Aldasoro March 31, 2014 at 7:14 pmHello there,
Thanks for writing.
You’ll need to add some CSS rules to .flex-caption for the responsive styles in order to have that.
Best,
Juan.leahrubin March 31, 2014 at 7:31 pmThanks. Does this go in the custom CSS sheet? Can you tell me what rules I need to add?
Juanfra Aldasoro March 31, 2014 at 10:27 pmYes, the styles should go in the custom css stylesheet.
Something like this should work:
@media screen and (max-width: 1024px) { .flex-active-slide .flex-caption, .flexslider .slides li:first-child:nth-last-child(1) .flex-caption, .flexslider .slides li:only-child .flex-caption { display: block; } } @media screen and (max-width: 880px) { .flex-active-slide .flex-caption, .flexslider .slides li:first-child:nth-last-child(1) .flex-caption, .flexslider .slides li:only-child .flex-caption { display: none; } }
Best,
Juan.
Viewing 7 posts - 1 through 7 (of 7 total)
This topic is marked as resolved
Only the topic author can re-open this thread.