Move text and button to bottom of first picture

Solved

Move text and button to bottom of first picture

Mrstep
Excursionist
22 2 3

I need to move the text and and button of my first image to the bottom of the screen. Additionally is there any way to change the font? 

 

Accepted Solution (1)
Mrstep
Excursionist
22 2 3

This is an accepted solution.

THANKS SO MUCH! I inserted it and it did move down but the text mainly the "Collection" stayed on the same line??? any help IMG_3033.PNG

View solution in original post

Replies 6 (6)

Matusalab
Shopify Partner
30 2 1

Can you kindly share the store preview URL for ease of debugging?

Please let me know if it works by giving it a Like or marking it as a solution!
If you need further assistance, please head over to
https://www.matusalab.dev/ or reach out to me via www.mtslabrh97@gmail.com
Mrstep
Excursionist
22 2 3

https://ea71fe-fc.myshopify.com/ 

 

just for the mobile site

Moeed
Shopify Partner
4969 1317 1600

Hey @Mrstep 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
.box-content-center {
    transform: translate(-50%, 50%) !important;
}
}
@media screen and (max-width: 767px) {
.box-content-center {
    transform: translate(-50%, 10%) !important;
}
}
</style>

RESULT:

Moeed_0-1725041233855.png

Moeed_1-1725041282332.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
Mrstep
Excursionist
22 2 3

This is an accepted solution.

THANKS SO MUCH! I inserted it and it did move down but the text mainly the "Collection" stayed on the same line??? any help IMG_3033.PNG

Mrstep
Excursionist
22 2 3

Additionally im trying to get it to be as close to what I created on Wix as possible. I'm trying to come over to the shopify platform this is how it looks on wix. IMG_3034.PNG

Matusalab
Shopify Partner
30 2 1

.box-title {
max-width: 30ch;
margin: 0 auto;
}

add this

Please let me know if it works by giving it a Like or marking it as a solution!
If you need further assistance, please head over to
https://www.matusalab.dev/ or reach out to me via www.mtslabrh97@gmail.com