Add white space to text box mobile only - Impulse Theme

Solved

Add white space to text box mobile only - Impulse Theme

kingbeanz
Excursionist
35 5 9

Hi,

I'd like to add some white space to the bottom of this text box so it's not so abrupt into the footer.

I'd like the changes on mobile only.

Screen Shot 2024-09-26 at 01.31.10.png

website: emery-yorkshire.com

Accepted Solution (1)

PageFly-Richard
Shopify Partner
4668 1069 1726

This is an accepted solution.

This is Richard from PageFly - Shopify Page Builder App

 

Hi  @kingbeanz   Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
@media (max-width: 767px) {
.background-media-text__text {
    padding-bottom: 70px !important; 
 }
}
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

Dan-From-Ryviu
Shopify Partner
9668 1936 1971

Hi @kingbeanz 

@media (max-width: 749px) {
.background-media-text__text { padding-bottom: 50px; }
}

Screenshot 2024-09-26 at 08.47.07.png

You can do that by adding this code to Custom CSS of that section in theme's customize 

 

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

suyash1
Shopify Partner
9876 1228 1566

@kingbeanz - please add this css to the very end of your mrk.css file and check, adjust number as per your need
Shopify Admin -> Online Store ->Theme -> Edit code -> mrk.css

@media only screen and (max-width: 768px) {
    .background-media-text__text {padding-bottom: 50px !important;}
}

 

To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me

GTLOfficial
Shopify Partner
558 121 110

HEllo @kingbeanz 
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> mrk.css
add this code at the end of the file.

@media only screen and (max-width: 768px) {
.background-media-text__text {
padding: 41px !important;
}
}

result
4.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

PageFly-Richard
Shopify Partner
4668 1069 1726

This is an accepted solution.

This is Richard from PageFly - Shopify Page Builder App

 

Hi  @kingbeanz   Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
@media (max-width: 767px) {
.background-media-text__text {
    padding-bottom: 70px !important; 
 }
}
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

kingbeanz
Excursionist
35 5 9

Perfect , thank you Richard !!