Position toolbar below the inline carousel #165
Answered
by
igordanchenko
stevenfeltner
asked this question in
Q&A
-
Hi, Can someone help me with getting the toolbar to be below the carousel? I've tried styles and also a module scoped CSS. Basically looking to get the toolbar to not sit on top of the image/s. I've tried changing the container to use relative and flex-direction: column without much success. Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
igordanchenko
Jul 28, 2023
Replies: 1 comment 3 replies
-
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
igordanchenko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
Currently the toolbar is rendered relative to the carousel. If you want to position it at the bottom of the carousel you can tweak its position with the following css.
However, positioning the toolbar below the carousel is not supported out of the box. You'd need to add an extra
<div>
wrapper to achieve the desired lay…