In the Twitter-bootstrap framework, it searches for the active
class within an li
element to determine which navigation element should be highlighted.
However, I am using django-cms, which by default uses a selected
class to indicate the same thing (i.e. "this tab is where you currently are"). Is there a way to achieve something like this:
class "selected" = class "active"
The li
element generated by django-cms is created using the template tag show_menu
, so I do not have direct access to the element to manually add the active
class myself.