kmb67116
kmb67116

Reputation: 181

position text on divi slider to bottom right

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

Answers (2)

Areeb Saeed Raja
Areeb Saeed Raja

Reputation: 74

Please try:

position: relative;
bottom: 10px;
right: 16px;

Upvotes: 0

Stefan Dacey
Stefan Dacey

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

Related Questions