Move shop button to the bottom of image banner

Solved

Move shop button to the bottom of image banner

Mrstep
Explorer
71 3 11

Move shop button to the bottom of image banner on mobile. www.cuzzoclothing.com Screenshot 2024-12-07 at 6.13.04 PM.png

Accepted Solution (1)
suyash1
Shopify Partner
10435 1287 1646

This is an accepted solution.

@Mrstep - please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

@media screen and (max-width:749px){
.banner__content{align-items: end !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

View solution in original post

Replies 9 (9)

suyash1
Shopify Partner
10435 1287 1646

@Mrstep  I think you already have moved the button

Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Mrstep
Explorer
71 3 11

No i just added reuploaded and old theme

Mrstep
Explorer
71 3 11

If you look now its where it needs to be changed

suyash1
Shopify Partner
10435 1287 1646

@Mrstep - it shows like this

 

suyash1_0-1733628203566.png

 

Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Mrstep
Explorer
71 3 11

Sorry I forgot to hit publish for my updated theme

suyash1
Shopify Partner
10435 1287 1646

This is an accepted solution.

@Mrstep - please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

@media screen and (max-width:749px){
.banner__content{align-items: end !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Mrstep
Explorer
71 3 11

Thx soooooooooooooo much that worked!!!!!!!! Can you show me how to remove the search bar on the header and thats all that I need

suyash1
Shopify Partner
10435 1287 1646

@Mrstep - for mobile only or for desktop as well?

Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
suyash1
Shopify Partner
10435 1287 1646

@Mrstep  to hide search from both desk and mobile, add this css and if you want on mobile only then the css below with media query

 

.header__search {display: none !important;}

 

for mobile only

 

@media screen and (max-width:749px){
.header__search {display: none !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.