
Originally Posted by
Joseph M
Can I assign the same style rules to the EZ-Pages header as those assigned to the header's navigation tabs? How does one move or align items in these boxes? I've been able to change the background with my browser's developer tool, but nothing else.
I wanted to use EZ-page links to display some main categories that are only used for linked products, without showing all of my main categories. The navigational tabs apparently make me choose between all or nothing. So I used EZ-Page links for the handful of categories I wanted showing, and built a navigational bar containing only some main categories. I was able to center the EZ-pages header content by adding this to my stylesheet:
Code:
.nav {
justify-content: center;
}
I put spacing spacing between each of the listed categories with:
Code:
.nav-pills .nav-link {
margin: 5px 8px;
}
I'm not sure if that was the correct way to do it, but it seems to work.