This snippet will change the distance between the menu points.
Note: You need to change the "Padding-left" to "padding-right" if your menu is placed in the left
This snippet will change the distance between the menu points.
Note: You need to change the "Padding-left" to "padding-right" if your menu is placed in the left
1) 1st level menu points distance (padding)
2) 2nd level menu points distance (padding)
/* Distance between 1st and 2nd level menu points */
/* NOTE: You need to change the "Padding-left" to "padding-right"
if your menu is placed in the left */
/*1) 1st level menu - Adjust the distance between the menu points */
.nav-primary ul li{
padding-left:20px;
}
/*2) 2nd level menu - Adjust the distance between the menu points */
.nav-primary .has-children ul li{
padding-left:20px;
}
Copy to clipboard