Move slider text

Is it possible to move the slider text to another place in the slider e.a. top, left or top right or down right.

Thanks.

This will move slider text to top-right corner:

.flex-caption {
    top: 0;
    left: auto;
    margin-top: 30px;
}

This will move slider text to top-left corner:

.flex-caption {
    top: 0;
    margin-top: 30px;
}

This code will move slider text to right side at the bottom:

.flex-caption {
    left: auto;
}

Use any of above mentioned code snippets by adding them to Theme Options - Other - Custom CSS.