New Shopify Certification now available: Liquid Storefronts for Theme Developers

how to get rid of horizontal scroll

Solved
Advertfox
Shopify Partner
27 0 4

hi, how can i get rid of horizontal scroll  ?

here is my store link https://rustic-rack-clothing-co.myshopify.com/

pass is advertfox

 

Accepted Solutions (3)
theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Hi @Advertfox ,

 

Try adding this code at the end of theme.liquid file.

 

<style>
body {
    max-width: 100vw!important;
    overflow-x: hidden!important;
}
</style>

 

makkaomakka_0-1700291077758.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Hi @Advertfox ,

 

Try adding below code at the end of theme.liquid.

<style>
.newsletter-form__button {
    width: fit-content;
    padding: 1rem;
    font-size: 1.6rem;
    background-color: #F78C60 !important;
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
  
}
.newsletter-form__button .icon {
    width: fit-content;
    display: none;
}
.newsletter-form__button:after{
    content: "Subscribe";
    font-weight: 700;
}
</style>

makkaomakka_0-1700294459481.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Replace the old code with this new one to turn the background white.

<style>
.newsletter-form__button {
    width: fit-content;
    padding: 1rem;
    font-size: 1.6rem;
    background-color: #F78C60 !important;
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
  
}
.newsletter-form__button .icon {
    width: fit-content;
    display: none;
}
.newsletter-form__button:after{
    content: "Subscribe";
    font-weight: 700;
}
.newsletter-form__field-wrapper .field__input {
background: #fff;
}
</style>

 

makkaomakka_0-1700294937060.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

Replies 13 (13)
theycallmemakka
Shopify Partner
967 193 204

hI @Advertfox ,

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code just above </body> tag

 

<style>
header.header.header--top-center.page-width.header--has-menu nav.header__inline-menu {
    max-width: 100%!important;
}
</style>

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

it's not working, shows white space in both ends

theycallmemakka
Shopify Partner
967 193 204

do you want this section to be unscrollable?

makkaomakka_0-1700290396759.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

i think the scroll shows cause of the header menu strip but im not sure 

theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Hi @Advertfox ,

 

Try adding this code at the end of theme.liquid file.

 

<style>
body {
    max-width: 100vw!important;
    overflow-x: hidden!important;
}
</style>

 

makkaomakka_0-1700291077758.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

it worked !!! thanks a lot

Advertfox
Shopify Partner
27 0 4

can you please also help me to keep subscribe button in footer instead of arrow, i was able to do it in section but its not changing in footer, thank you

theycallmemakka
Shopify Partner
967 193 204

Can you let me know which design of botton are you looking for in the footer form? If its just "Subscribe text", you can add below code on the theme.liquid file.

 

<style>
.newsletter-form__button {
    width: fit-content;
    padding: 1rem;
    font-size: 1.6rem;
    
}
.newsletter-form__button .icon {
    width: fit-content;
    display: none;
}
.newsletter-form__button:after{
    content: "Subscribe";
}
</style>

 

makkaomakka_0-1700293126233.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

i want the same which is on my home page

theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Hi @Advertfox ,

 

Try adding below code at the end of theme.liquid.

<style>
.newsletter-form__button {
    width: fit-content;
    padding: 1rem;
    font-size: 1.6rem;
    background-color: #F78C60 !important;
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
  
}
.newsletter-form__button .icon {
    width: fit-content;
    display: none;
}
.newsletter-form__button:after{
    content: "Subscribe";
    font-weight: 700;
}
</style>

makkaomakka_0-1700294459481.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

it workeddddd !!!!! thanks a lot, can i make input field background white ?

theycallmemakka
Shopify Partner
967 193 204

This is an accepted solution.

Replace the old code with this new one to turn the background white.

<style>
.newsletter-form__button {
    width: fit-content;
    padding: 1rem;
    font-size: 1.6rem;
    background-color: #F78C60 !important;
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
  
}
.newsletter-form__button .icon {
    width: fit-content;
    display: none;
}
.newsletter-form__button:after{
    content: "Subscribe";
    font-weight: 700;
}
.newsletter-form__field-wrapper .field__input {
background: #fff;
}
</style>

 

makkaomakka_0-1700294937060.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Advertfox
Shopify Partner
27 0 4

you are awesomeeeeee !!! thank you