Hi, I am not able to remove the horizontal scroll bar at the bottom of the desktop screen. My layout setting is 1200 PX width.
Thank you,
https://ez-eleganza-069.myshopify.com
PW: maofib
Hi, I am not able to remove the horizontal scroll bar at the bottom of the desktop screen. My layout setting is 1200 PX width.
Thank you,
https://ez-eleganza-069.myshopify.com
PW: maofib
@San21 add this css to assets > base.css
@media (min-width:990px) {
.header-wrapper {
overflow: hidden;
}
}
Hi @San21 ,
You can follow the instruction below:
#shopify-section-header {
overflow: hidden;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
sorry for that issue can you try this
@media screen and (min-width: 990px) {
nav.header__inline-menu {left: 0 !important;text-align: center;}
}
Hello @San21
Greetings!!
Please follow the steps
Go to Online Store->Theme->Edit code
Find in search input “base.css” or assets > base.css
Copy and Paste below code in the top of the file
body {
overflow-x: hidden;
}
I hope it will help you
If it is helpful then please like and accept it as a solution!