How to move navigation order? #1196
Replies: 2 comments
-
Inside the {% if site.blog_nav_title %}
<!-- Blog -->
<li class="nav-item {% if page.url contains 'blog' %}active{% endif %}">
<a class="nav-link" href="{{ '/blog/' | relative_url }}">{{ site.blog_nav_title }}
{%- if page.url contains 'blog' -%}
<span class="sr-only">(current)</span>
{%- endif -%}
</a>
</li>
{%- endif %} to the end of |
Beta Was this translation helpful? Give feedback.
0 replies
-
You should also be able to change the navigation order in your .md file under nav_order. Give Blog a larger number than Research. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to move the tab
Research
beforeBlog
?Beta Was this translation helpful? Give feedback.
All reactions