Changing banner box location on desktop and mobile versions.

Solved
sanjivp27
Excursionist
15 0 4

I want to move the text boxes in the first image banners on the home and impact pages down by a certain amount. Additionally, I would also like to move the same text boxes down a different distance in the mobile version.

Any help is appreciated.

Thank you

url: sisubracelets.us

Accepted Solution (1)
LitExtension
Shopify Partner
4859 1001 1105

This is an accepted solution.

@sanjivp27,

Go to Assets > base.css and paste this at the bottom of the file:

/* code desktop */ @media only screen and (min-width: 750px) { #Banner-template--15453100146745__165525969688027bd0 .banner__box { margin-top: 10%; } } /* code mobile */ #Banner-template--15453100146745__165525969688027bd0 .banner__box { margin-top: 10%; }

You can change the number to your liking.

Hope it helps!

LitExtension - Shopping Cart Migration Expert
Check out our Shopifymigration appto migrate your online store to Shopify

View solution in original post

Replies3(3)
Kani
Shopify Partner
464 122 204

@sanjivp27

Kani_0-1662776079082.pngKani_1-1662776095376.png

1: Online store > themes > Actions > Edit code > Section > image-banner.liquid

2:

replace

#Banner-{{section.id}} { top: -110px; }

with

#Banner-{{section.id}} { top: -110px; padding-top: 110px;/* add */ }

Hey!! ʕ ᵔᴥᵔ ʔ
Please click'Like'and“接受解决方案”to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response.:slightly_smiling_face:
LitExtension
Shopify Partner
4859 1001 1105

This is an accepted solution.

@sanjivp27,

Go to Assets > base.css and paste this at the bottom of the file:

/* code desktop */ @media only screen and (min-width: 750px) { #Banner-template--15453100146745__165525969688027bd0 .banner__box { margin-top: 10%; } } /* code mobile */ #Banner-template--15453100146745__165525969688027bd0 .banner__box { margin-top: 10%; }

You can change the number to your liking.

Hope it helps!

LitExtension - Shopping Cart Migration Expert
Check out our Shopifymigration appto migrate your online store to Shopify
sanjivp27
Excursionist
15 0 4

It works. Thank you for the help.