How can I move text and subheading to the bottom right on a slideshow?

Trying to reposition the text and subheading to the bottom right. Can anyone help? I use the taste theme.

Thanks.

Hello,

i will help you can you give me store details.

Thanks.

Store details?

starmintz.com password - rtilaw

Is this what you need?

i check your domain but no field found Enter password

Should be ok now.

I have removed the password

Hello @StarMintz

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.banner--desktop-transparent .banner__box {
    position: absolute !important;
    bottom: 5% !important;
    right: 5% !important;
}

Thats great! Is there a way to do it for mobile view aswell?

Hello @StarMintz

You can try this code: it will be helpful to you for mobile view-

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

@media screen and (max-width: 749px){
.banner--desktop-transparent .banner__box {
 left: 20% !important;
}
}

Thats worked. Last thing, how do i make the font slightly bigger on desktop?

Thanks.

Hello @StarMintz

Could you please share the description or screenshot of which font is bigger?

Hello @StarMintz

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.rich-text__blocks>*+* {
    font-size: 2rem !important;
}

Do you want it like this ?

Yes but bigger not smaller

Hello @StarMintz

You can try this code: it will be helpful to you-

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.rich-text__blocks>*+* {
    font-size: 2.5rem !important;
}

Do you want it like this:-

No i want the Breathe With Confidence to be bigger on desktop

Hello @StarMintz

You can try this code: it will be helpful to you-

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

h2.banner__heading.h2 {
    font-size: 3.5rem !important;
}