how can i resize and move the heading and button to further bottom of slideshow (mobile only)

Solved

how can i resize and move the heading and button to further bottom of slideshow (mobile only)

alihk
Tourist
7 0 3

Hi there, 

 

i am using dawn theme version 15.0.2. My store url is vulph.com. On mobile site slideshow image, the heading and button size is too big and cannot be positioned at the bottom. I need help to reduce the size of both heading and the button and position the both at very bottom as explained in the image below. thanks

2.jpg

 

Accepted Solutions (2)

BSSCommerce-B2B
Shopify Partner
1372 369 432

This is an accepted solution.

Hi @alihk , 

I have reviewed your requirement, you just need to edit css script and the issue will be resolved.  You can follow my instructions! 

Step 1: Go to Admin -> Online store -> Theme > Edit code:

BSSCommerceB2B_0-1722916455421.png

 

Step 2: Search for the file base.css. And add this code snippet to the end of the file.

@media screen and (max-width: 768px) {
    .banner__buttons .button {
        min-height: 40px !important;
    }
    .slideshow__text.banner__box {
        transform: translateY(10rem) !important;
    }
}

 

Step 3: Save your code and reload this page.

=>> The result: 

BSSCommerceB2B_1-1722916583349.png

 

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day sir! 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now I Donate Us Here!

View solution in original post

JasmeetVT14313
Shopify Partner
273 59 72

This is an accepted solution.

Hi @alihk 
You can add the below code to Custom CSS part of the section from Editor (Customize)

@media screen and (max-width: 749px) {
.banner__text.rte {
    margin-top: 4px;
}

.banner__box>*+.banner__buttons {
    margin-top: 1rem;
}
}



JasmeetVT14313_0-1722922280342.png

If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!

 

- VTN Customer Dashboard enhances your customer's dashboard with advanced features, profile management, and order tracking. Free trial available.
- Feel free to contact me at jasmeet.kaur@vtnetzwelt.com

View solution in original post

Replies 5 (5)

BSSCommerce-HDL
Shopify Partner
2056 724 899

Hi @alihk

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

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag: 

 

<style>
@media screen and (max-width: 749px) {
  .banner__buttons .button {
    min-height: 4rem !important;
  }

  .slideshow__text.banner__box {
    transform: translateY(90px) !important;
  }
}
</style>

 

Here is result: 

BSSCommerceHDL_0-1722912966448.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  😍

 

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

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.
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

BSSCommerce-B2B
Shopify Partner
1372 369 432

This is an accepted solution.

Hi @alihk , 

I have reviewed your requirement, you just need to edit css script and the issue will be resolved.  You can follow my instructions! 

Step 1: Go to Admin -> Online store -> Theme > Edit code:

BSSCommerceB2B_0-1722916455421.png

 

Step 2: Search for the file base.css. And add this code snippet to the end of the file.

@media screen and (max-width: 768px) {
    .banner__buttons .button {
        min-height: 40px !important;
    }
    .slideshow__text.banner__box {
        transform: translateY(10rem) !important;
    }
}

 

Step 3: Save your code and reload this page.

=>> The result: 

BSSCommerceB2B_1-1722916583349.png

 

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day sir! 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now I Donate Us Here!

alihk
Tourist
7 0 3

this has worked up to some extent. is it possible to bring heading and sub-heading closer to the button and reduce the gap between heading, sub-heading and button as explained in the image.

 

Screenshot 2024-08-06 131542.png

JasmeetVT14313
Shopify Partner
273 59 72

This is an accepted solution.

Hi @alihk 
You can add the below code to Custom CSS part of the section from Editor (Customize)

@media screen and (max-width: 749px) {
.banner__text.rte {
    margin-top: 4px;
}

.banner__box>*+.banner__buttons {
    margin-top: 1rem;
}
}



JasmeetVT14313_0-1722922280342.png

If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!

 

- VTN Customer Dashboard enhances your customer's dashboard with advanced features, profile management, and order tracking. Free trial available.
- Feel free to contact me at jasmeet.kaur@vtnetzwelt.com
alihk
Tourist
7 0 3

this worked well. thanks😊