How can I change sequence navigation tabs style?

In learning course want to add title next the book icon, i looked in lms template files to overwrite but i cannot find anything help.

there is something can i do? to help me

@arbrandes do you know if this can be overridden?

There’s currently no way to customize this using branding or plugins, but the change to the code is actually simple, because the React component that renders this already allows showing the title. But it’s only used in the dropdown navigation.

In other words, on a forked frontend-app-learning, to get the title in the horizontal tabs you’d start by adding showTitle in here.

1 Like

The left side navigation bar would also solve the requirement of showing titles (albeit in a different layout) , correct?

1 Like

Thank you so much!

There is a question, i see many of repos of frontend in GitHub

how can I know which repo should I edit if I need to edit/change something else in future

If you’re using Tutor, for the most part it’s (currently) easy. Just look at your browser’s URL bar. The first component of the path of the page you’re looking at tells you which repository the code is in.

For instance, in Tutor dev mode, if the URL reads http://apps.local.openedx.io:1996/learner-dashboard/, the corresponding Github repository is github.com/openedx/frontend-app-learner-dashboard. In other words, just prefix the first component of the path with frontend-app-.

1 Like

Thank you!

1 Like