Moving Text Smaller Mobile

Solved

Moving Text Smaller Mobile

umrraz90
Excursionist
32 1 10

Hi, 

 

I posted yesterday and wanted my moving text smaller which it worked with the solution but now when ive added another moving text it displays smaller on mobile than the original, please see below, i want it all the same size. 

 

https://www.theflowerstudiobyroo.co.uk/pages/workshop-events 

 

 

umrraz90_0-1723112848477.png

 

Accepted Solutions (2)

BSS-TekLabs
Shopify Partner
2077 613 718

This is an accepted solution.

Can you try add this code to file base.css @umrraz90 

@media screen and (max-width: 767px) {
    .text-slider-box .moving-text h2 {
        font-size: 16px !important;
    }
}

BSSTekLabs_0-1723120412313.png

 

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

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

View solution in original post

BSS-TekLabs
Shopify Partner
2077 613 718

This is an accepted solution.

@media screen and (max-device-width: 480px){
  body{
    -webkit-text-size-adjust: 100%;
  }
}

Add this code to file base.css

BSSTekLabs_0-1723133115162.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you @umrraz90 .

 

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

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

View solution in original post

Replies 6 (6)

niraj_patel
Shopify Partner
2378 514 511

Hello @umrraz90 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .MarqueeSection a .moving-text h2 {
     font-size: 13px !important;
   }
 }

</style>

niraj_patel_0-1723113327070.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
umrraz90
Excursionist
32 1 10

I still have the same issue look at what is highlighted, this font is still smaller

 

umrraz90_0-1723113524716.png

 

niraj_patel
Shopify Partner
2378 514 511

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .MarqueeSection a .moving-text h2 {
     font-size: 25px !important;
   }
 }

</style>

niraj_patel_0-1723113824445.png

 

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

BSSCommerce-HDL
Shopify Partner
2071 734 921

Hi @umrraz90 ,

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

Step 2: Search file theme.liquid

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

<style>
    @media screen and (max-width: 750px) {
      .moving-text h2 {
    font-size: 24px!important;
  }
}

</style>

 Here is result:

BSSCommerceHDL_0-1723113642301.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

BSS-TekLabs
Shopify Partner
2077 613 718

This is an accepted solution.

Can you try add this code to file base.css @umrraz90 

@media screen and (max-width: 767px) {
    .text-slider-box .moving-text h2 {
        font-size: 16px !important;
    }
}

BSSTekLabs_0-1723120412313.png

 

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2077 613 718

This is an accepted solution.

@media screen and (max-device-width: 480px){
  body{
    -webkit-text-size-adjust: 100%;
  }
}

Add this code to file base.css

BSSTekLabs_0-1723133115162.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you @umrraz90 .

 

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

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