Align Brand Header nav links to the right?

I’m missing something easy. I had our brand header designed to match our other sites, where the navigation links are aligned right. Somehow in an update they are now aligned left. I’ve tried every bit of CSS but cant seem to change the left alignment of nav links.

You should able to do it by removing the following CSS

.b-header .panel {
  margin: 0 0 0 auto;
}
1 Like

Perfecto! Thanks, that was easy… I just overrode it in my custom theme component for our site:

.b-header .panel {
   margin:0!important;
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.