Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
415 views
in Q2A Core by

I'm trying to add 2 classes to ul.qa-nav-sub-list. This is the menu that displays for the admin under the main nav. It's created dynamically using $navtype, but i can't figure out where to add my classes so they aren't added to the rest of every $navType. Thank you!

Q2A version: Latest 1.7xx
by
Change the below HTML code to what you want accurately. In some cases, we may be able to write the answer.

<ul class="qa-nav-sub-list">
  <li class="qa-nav-sub-item qa-nav-sub-admin-general">
    <a href="../admin/general" class="qa-nav-sub-link">General</a>
  </li>
  ...
</ul>

=> What is the final HTML code you want??

Please log in or register to answer this question.

...