How to customize the current active link? #133
Replies: 2 comments
-
It's basic knowledge of CSS. At first of all you should add class to parent div of your navigation. So I added pagination.
And then override styles of this pagination like this for example:
You can also select the last and the first element like this, and change the content using CSS and remove (current). But I think this current is connected with aria attribute. |
Beta Was this translation helpful? Give feedback.
-
the simple solution is : <style> .sr-only{ display: none !important; } </style>because "current" word on every click it append on the button . by this way you can make it indisplayed |
Beta Was this translation helpful? Give feedback.
-
I want to remove the "current" word from the active pagination link. In the documentation, I could only find how to do it for the previous and next links.
Beta Was this translation helpful? Give feedback.
All reactions