Migrating an app with a carousel from PF 6.2 to 13 #198
-
I am moving an app from 6.2 to 13. It contains a carousel compenent, used for scrolling through sponsors. It scrolls single ad at a time, and restarts. Here is the definition:
After moving to 13.0, the component had 2 changes... the 'indicator' fields (which I fixed with paginator="false", and a prev and next scroller. I can't find a way to get rid of these. If I set the style="overflow: hidden", the framework overrides it to "overflow: flex". How do I get rid of the arrows and let the graphic show in its entirety? Bill |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
You can hide those nav buttons with: body .ui-carousel-prev, body .ui-carousel-next {
display: none;
} |
Beta Was this translation helpful? Give feedback.
-
Thanks, FlipWarthog, I will try that first thing tomorrow. I did try that but without the body keyword. And will fix the case of the autoplay property. |
Beta Was this translation helpful? Give feedback.
You can hide those nav buttons with: