Reputation: 181
How I can position title bottom right of slide?
There is slide css in advanced slide settings.
I've tried:
position: absolute;
bottom: 8px;
right: 16px;
but then my slide dissapears..
Upvotes: 0
Views: 1528
Reputation: 165
In addition to your code, you need to make your slide relative and it should work.
.slide {position: relative}
Another solution would be to use flex display on your slide and your title.
Upvotes: 0