The client wants the drop down menu spacing fixed. Here is what he said:
The Dropdown choices at the top need spacing edits so they appear more centered to the page.
The client wants the drop down menu spacing fixed. Here is what he said:
The Dropdown choices at the top need spacing edits so they appear more centered to the page.
Here is an attachment the client sent referring to this:
Hi @spencey,
Do you mean you want to center the menu items below the logo?
If so, you just have to edit this CSS code that you have added to the Global CSS:
.masthead-stacked .desktop .x-nav {
display: table;
margin-left: auto;
margin-right: auto;
}
and update it to:
.masthead-stacked .desktop .x-nav {
display: table;
margin-left: auto !important;
margin-right: auto !important;
}
Then the menu should be centered like this:

Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.