Refresh theme, move slideshow text higher

Solved

Refresh theme, move slideshow text higher

Isa10
Tourist
10 0 3

Dear all,

I would like to move the text that appears on my page's slideshow a little bit higher. Can anyone help me figure out how to do that through coding? (coding newby here)

my site : arvernefamily.com

password : skiyow

Thank you in advance for your kind helpCapture d'écran 2024-05-24 095030.png

Accepted Solution (1)

BSSCommerce-HDL
Shopify Partner
2305 835 907

This is an accepted solution.

Hi @Isa10
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

BSSTechVenture_0-1716537602073.png

 

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

BSSTechVenture_1-1716537606543.png

 

Step 3: Insert the below code at the bottom of the file -> Save

@media only screen and (min-width: 750px) {
    .slideshow__text.slideshow__text--left {
        padding-top: 5px !important;
    }
}

Here is result: 

BSSTechVenture_2-1716537642743.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 6 (6)

BSSCommerce-HDL
Shopify Partner
2305 835 907

This is an accepted solution.

Hi @Isa10
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

BSSTechVenture_0-1716537602073.png

 

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

BSSTechVenture_1-1716537606543.png

 

Step 3: Insert the below code at the bottom of the file -> Save

@media only screen and (min-width: 750px) {
    .slideshow__text.slideshow__text--left {
        padding-top: 5px !important;
    }
}

Here is result: 

BSSTechVenture_2-1716537642743.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Isa10
Tourist
10 0 3

Thank you this worked and I can now adapt the padding by changing the 5px by any size that fits me best !

BSSCommerce-HDL
Shopify Partner
2305 835 907

Hi @Isa10We're happy to see that our suggestion helped you solve the issue

Can you kindly give us a like? This can be a reference for other merchants if they have an issue like you and greatly motivate us to contribute to our community.

Thanks in advance. 😍😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Kushagra0602
Shopify Partner
16 1 0

Hi @Isa10 ,

  • Log in to Shopify Admin.
  • Navigate to Online Store > Themes > Actions > Edit Code.
  • Open "section-image-banner.css" file.
  • Paste CSS code at the bottom.
  • Save changes.


 

.banner__heading {
    margin-bottom: 0;
    font-size: 50px !important;
}​

 

  • Preview and publish if satisfied.

    You can adjust the font-size pixels values as per your requirement.
Kushagra Dubey

ZestardTech
Shopify Partner
6096 1091 1464

Hello There,

 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

 

.banner__box {
padding: 2rem 3.5rem;
}

 

ZestardTech_0-1716540647293.png

 

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Isa10
Tourist
10 0 3

sorry this did not work for me.