브랜드 헤더의 내비게이션 링크를 오른쪽으로 정렬할 수 있나요?

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;
}

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

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