How do I change the spacing between the options on my header?
Chester69
Could you please send a screenshot of what you’d like to change?
Please add below css in bottom of assets/base.css file
.header__menu-item {
padding: 1.2rem 2rem;
}
Thank you.
add this code to your base.css file.
Navigate to online store >> Click edit theme code.
Now find base.css and paste the following code:
@media(min-width: 980px){
.list-menu--inline li{
padding-right: 2rem !important;
}
.list-menu--inline li:last-child{
padding-right: 0rem !important;
}
}