Carousel Text Editor: Text aligned top and bottom
-
Dear everybody,
I tried to have a fullscreen-text in my fullscreen-carousel-slider (including fullscreen images as well as fullscreen texts). There should be some text (a few sentences) at the top and some text at the bottom (a few sentences), in between there schould be just empty space (no text). So I choosed the settings "Vertical Alignment of Text Slides: top" and tried to change the source code in the text-editor of carousel: <p>testschrift1</p><p style="vertikal-align: bottom;">testschrift2</p>. And I tried: <p>testschrift1</p><p style="postion: absolute; bottom: 0px;">testschrift2</p>
But it is not working. Can you please tell me, what I am doing wrong or if this is just not possible.Have an nice day and all best!
Hannah
-
Dear Hannah @HW
Just to help me understand,
-
You are using the carousel addon in fullscreen
-
You have a text slide but you want the text 'within' that slide to be separated by space in the middle - (text on top_ /space/_text on bottom )
-
Your Code:
<p>testschrift1</p> <p style="vertikal-align: bottom;">testschrift2</p>. <p>testschrift1</p><p style="postion: absolute; bottom: 0px;">testschrift2</p>I have recreated what i thought you were after:

source code ( i have added the classes manually):<p class="text-top">I HAVE SOME TEXT AT THE TOP</p> <p class="text-bottom">I HAVE SOME TEXT AT THE BOTTOM</p>Then added in Custom CSS within 'Lay Options - Custom CSS & HTML' I can address the class:
.slide-text{ height:100%; } .text-bottom{ position: absolute; bottom: 0; left: 0; }
This works for me, however let me know how you go! :)
Best wishes Hannah and have a lovely day
Richard
-